> From: [email protected] On Behalf Of Richard Ray > Sent: Wednesday, 12 May, 2010 09:35
> I bought a copy of Network Security with OpenSSL from a friend > In chapter 7 section Secure HTTP Cookies the examples use > functions EVP_EncodeBlock and EVP_DecodeBlock > I can not find any mention of these in documentation or man pages > Can someone point me to where I might find them > As far as I can see they are not documented on their own. They are the core of a base64 BIO created by BIO_f_base64(), which does have a (brief) manpage, but they are exposed in bio/bio.h so it's not clear if they 'should' be used alone. They do basic mem-to-mem base64 encode and decode respectively. The source is in crypto/evp/encode.c and is simple enough to read. Or b64 encode/decode is simple enough to juse write your own. ______________________________________________________________________ OpenSSL Project http://www.openssl.org User Support Mailing List [email protected] Automated List Manager [email protected]
