Re: BIO Handling

2003-02-28 Thread Dr. Stephen Henson
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

BIO Handling

2003-02-28 Thread Christian Weber
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)); //