On Fri, Feb 28, 2003, Christian Weber wrote:
> Dear OpenSSL users,
>
> we want to want to operate on the Contents of a memory BIO
> - eg digest - and tried out following implementation:
>
> -
> BIO *mb = BIO_new(BIO_s_mem());
> // filling it with some data
> char* message="This is so
Dear OpenSSL users,
we want to want to operate on the Contents of a memory BIO
- eg digest - and tried out following implementation:
-
BIO *mb = BIO_new(BIO_s_mem());
// filling it with some data
char* message="This is some data to digest";
BIO_write(mb, message, sizeof(message));
//