fingerprint

2006-01-01 Thread Folkert van Heusden
Hi, What would be the way to obtain the fingerprint of the peer to which my program connects? I looked in the sources of fetchmail but there a call-back is used and I would like to implement it without a callback function. Folkert van Heusden -- Try MultiTail! Multiple windows with logfiles,

Re: fingerprint

2006-01-01 Thread Goetz Babin-Ebell
Folkert van Heusden wrote: What would be the way to obtain the fingerprint of the peer to which my program connects? I looked in the sources of fetchmail but there a call-back is used and I would like to implement it without a callback function. X509 * SSL_get_peer_certificate(const SSL *s);

Re: fingerprint

2006-01-01 Thread Folkert van Heusden
Hi, Thanks for replying. What would be the way to obtain the fingerprint of the peer to which my program connects? I looked in the sources of fetchmail but there a call-back is used and I would like to implement it without a callback function. X509 * SSL_get_peer_certificate(const SSL *s);

Re: fingerprint

2006-01-01 Thread Dr. Stephen Henson
On Sun, Jan 01, 2006, Folkert van Heusden wrote: Hi, Thanks for replying. What would be the way to obtain the fingerprint of the peer to which my program connects? I looked in the sources of fetchmail but there a call-back is used and I would like to implement it without a callback

Re: fingerprint

2006-01-01 Thread Folkert van Heusden
What would be the way to obtain the fingerprint of the peer to which my program connects? I looked in the sources of fetchmail but there a call-back is used and I would like to implement it without a callback function. X509 * SSL_get_peer_certificate(const SSL *s); or