Perhaps it's missing -'name openssl' in the 3 commands.
However I
run:
1) find / -type f -name openssl -exec ldd {} ;
libssl.so.4 =>
/lib/libssl.so.4 (0x0098f000)
libgssapi_krb5.so.2 =>
/usr/lib/libgssapi_krb5.so.2 (0x00718000)
libkrb5.so.3 =>
/usr/lib/libkrb5.so.3 (0x0083)
libcom_err
On 04/06/2018 15:56, Michael Wojcik wrote:
Of course people have been harvesting entropy, or trying to, from network
sources for decades. There's a famous paragraph regarding it in RFC 4086, which
is an expanded version of a similar statement from RFC 1750 (1994):
Other external events, s
The connection is open for verly long time (>24h), so I thought that
the peer may force a renogatioation due to the session timeout. Or
have I got something wrong and a renogatioation is not necessary for
long-running sessions?
--
openssl-users mailing list
To unsubscribe: https://mta.openssl.org/
>The code above does what I want - except for renegotiations!
Do you absolutely, positively, HAVE TO support renegotiation?
--
openssl-users mailing list
To unsubscribe: https://mta.openssl.org/mailman/listinfo/openssl-users
Hi everybody!
I am working on a program where each peer may write at any time, so
the other side has to be able to read incoming data when it gets
available. If the peer sent nothing my program must be able to call
SSL_write() to send its own data to the other side.
My code currently does this u
Of course people have been harvesting entropy, or trying to, from network
sources for decades. There's a famous paragraph regarding it in RFC 4086, which
is an expanded version of a similar statement from RFC 1750 (1994):
Other external events, such as network packet arrival times and
le
find / -type f -exec {} version \;
find / -type f -exec objdump -x {} \;
find / -type f -exec ldd {} \;
looks like you only have 1 openssl binary, 0.9.7.a on your host.
objdump -x & ldd will show you which libraries the openssl binary is compiled
to use on your host.
so….
objdump -x [ full
Here is result for first command:
find / -type f -name openssl
-exec {} version ;
OpenSSL 0.9.7a Feb 19 2003
What means repeat with?
What I have to type for next comand exactly please?
objdump -x &
ldd.
Il 04.06.2018 08:30 FooCrypt ha scritto:
> find / -type f
-name openssl -exec {}