Hello Stephen,

Sunday, August 13, 2006, 8:09:19 PM, you wrote:
>> > If the base64 encoded file was created using a base64 BIO then the
>> > BIO_FLAGS_BASE64_NO_NL flag will do it.
>> This is what I did:
>> mc_file = BIO_new_file( nowsigned, "wb" );
>> if( mc_file )
>> {
>>     b64 = BIO_new( BIO_f_base64() );
>>     mc_file = BIO_push( b64, mc_file );
>>     BIO_write( mc_file, mess, mess_len );
>>     BIO_flush( mc_file );
>>     BIO_free_all( mc_file );
>> How should I use that flag?
>> 
> BIO_set_flags(b64, BIO_FLAGS_BASE64_NO_NL) after the call to BIO_new().
Thank you!

The OpenSSL v0.98 'man pages' does not mention "BIO_set_flags()" at
all, that's why I was confused...

-- 
Best regards,
 Tony                    mailto:[EMAIL PROTECTED]

______________________________________________________________________
OpenSSL Project                                 http://www.openssl.org
User Support Mailing List                    openssl-users@openssl.org
Automated List Manager                           [EMAIL PROTECTED]

Reply via email to