RE: base64 encoding of AES Keys

2005-10-11 Thread Adam Jones
nssl.orgSubject: Re: base64 encoding of AES Keys You can encode any data in base64 using the openssl "enc" command. Suppose I have a file named "hello" that contains the text "hello world". The command $ openssl enc -base64 -in hello -out hello.b64

Re: base64 encoding of AES Keys

2005-10-11 Thread Joseph Oreste Bruni
have been looking to see if there is a function call to do this in code. Are you aware of any? From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] On Behalf Of Joseph Oreste BruniSent: Tuesday, October 11, 2005 12:46 PMTo: openssl-users@openssl.orgSubject: Re: base64 encoding of AES Keys You can

RE: base64 encoding of AES Keys

2005-10-11 Thread Adam Jones
Thanks! I have been looking to see if there is a function call to do this in code. Are you aware of any? From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Joseph Oreste BruniSent: Tuesday, October 11, 2005 12:46 PMTo: openssl-users@openssl.orgSubject: Re: base64 encoding of

Re: base64 encoding of AES Keys

2005-10-11 Thread Joseph Oreste Bruni
You can encode any data in base64 using the openssl "enc" command. Suppose I have a file named "hello" that contains the text "hello world". The command$ openssl enc -base64 -in hello -out hello.b64will encode the file and output the data to "hello.b64". Check the man pages for the "enc" command to