RE: printing encrypted strings

2005-09-27 Thread Adam Jones
What type of encryption are you using? And what function are you using to print it out. I have used cout and it works fine with that. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Sheehan, Tim Sent: Tuesday, September 27, 2005 3:46 PM To:

RE: printing encrypted strings

2005-09-27 Thread Sheehan, Tim
incorrectly. T -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Behalf Of Adam Jones Sent: Tuesday, September 27, 2005 5:09 PM To: openssl-users@openssl.org Subject: RE: printing encrypted strings What type of encryption are you using? And what function are you using to print

RE: printing encrypted strings

2005-09-27 Thread Adam Jones
' Subject: RE: printing encrypted strings I'm working in C. I'm actually using the AES 256 algorithm. It has been bolted in to the SSL like DES(and other enc algs). The encryption piece appears to be working well. I can cipherdecipher without any issues. It is when I store that encrypted string

Re: printing encrypted strings

2005-09-27 Thread Ken Goldman
reading it back, the unique characters are interpreted incorrectly. T -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Behalf Of Adam Jones Sent: Tuesday, September 27, 2005 5:09 PM To: openssl-users@openssl.org Subject: RE: printing encrypted strings What type

Re: printing encrypted strings

2005-09-27 Thread Bear Giles
There's a BIO that handles BASE-64 encoding and decoding. It makes the files much friendlier to naive editors and operating systems since it forces the contents to standard ASCII characters and you aren't dealing with \xxx encodings in your editors. Does DOS/Windows still need that silly