> From: owner-openssl-us...@openssl.org On Behalf Of Steffen DETTMER
> Sent: Wednesday, 05 May, 2010 14:04
> * Christina Penn wrote on Wed, May 05, 2010 at 07:42 -0400:
> >Can you show me exactly how to break up my example code
> to make my
> >example work? I tried removing the EVP_Decryp
Christina Penn wrote:
> Hello David,
> Can you show me exactly how to break up my example code to make my example
work?
It's really simple. When you want to decrypt a message, call
EVP_DecryptInit_ex. For each chunk of data you want to decrypt that is part
of the message, call EVP_DecryptUpda
* Christina Penn wrote on Wed, May 05, 2010 at 07:42 -0400:
>Can you show me exactly how to break up my example code to make my
>example work? I tried removing the EVP_DecryptFinal_ex from my
>DecryptMessage function and just seeing if the first part would just
>decrypt the first 7
On Wed, May 05, 2010, Christina Penn wrote:
> Hello David,
>
> Can you show me exactly how to break up my example code to make my example
> work? I tried removing the EVP_DecryptFinal_ex from my DecryptMessage
> function and just seeing if the first part would just decrypt the first 7
> bytes, bu
Hello David,
Can you show me exactly how to break up my example code to make my example
work? I tried removing the EVP_DecryptFinal_ex from my DecryptMessage
function and just seeing if the first part would just decrypt the first 7
bytes, but it got thrown into my catch statement. I am really conf
Hello,
Here is some example code of me trying to decrypt a partial AES message. It
doesn't work.. is there a way I can do something like this? It only works if
I call DecryptMessage() with the entire encrypted string. Why?
Thanks!!
#include
#include
#include
using namespace std;
#pragma
Christina Penn wrote:
> Here is some example code of me trying to decrypt a partial AES message.
> It doesn't work.. is there a way I can do something like this? It only
works
> if I call DecryptMessage() with the entire encrypted string. Why?
Your DecryptMessage function is specifically designe
Hello,
Here is some example code of me trying to decrypt a partial AES message. It
doesn't work.. is there a way I can do something like this? It only works if
I call DecryptMessage() with the entire encrypted string. Why?
Thanks!!
#include
#include
#include
using namespace std;
#pragma