Valery wrote:
> Where can I see example of using base64. > You wrote: "OpenSSL does that" > Is there an example on how OpenSSL converts encrypted data in binary format > into ascii? > Could you help me, please? Well, haven't you used the OpenSSL tools at all? If you did, you had seen the PEM format output to some things like certificates etc. The letter-scramble that you see coming out of there is base64 encoding. The base64 encoding is defined in the MIME specification RFC 2045 [http://www.ietf.org/rfc/rfc2045.txt]. If you browse through the OpenSSL source code you'll see routines for encoding things in base64. regards, -Gunther -- Gunther Schadow, M.D., Ph.D. [EMAIL PROTECTED] Medical Information Scientist Regenstrief Institute for Health Care Adjunct Assistant Professor Indiana University School of Medicine tel:1(317)630-7960 http://aurora.regenstrief.org ______________________________________________________________________ OpenSSL Project http://www.openssl.org Development Mailing List [EMAIL PROTECTED] Automated List Manager [EMAIL PROTECTED]
