RE: simply openssl encode c function

2012-05-29 Thread ml
Le lundi 28 mai 2012 à 17:25 -0400, Dave Thompson a écrit : > > From: owner-openssl-us...@openssl.org On Behalf Of ml > > Sent: Saturday, 26 May, 2012 16:18 > > > I try to realize as base64 encoding > > char *base64(char *input, int length) > > { > > BIO *bmem, *b64; > > BUF_MEM *bptr; > > >

RE: simply openssl encode c function

2012-05-28 Thread Dave Thompson
> From: owner-openssl-us...@openssl.org On Behalf Of ml > Sent: Saturday, 26 May, 2012 16:18 > I try to realize as base64 encoding > char *base64(char *input, int length) > { > BIO *bmem, *b64; > BUF_MEM *bptr; > > b64 = BIO_new(BIO_f_base64()); > bmem = BIO_new(BIO_s_mem()); > b64 = B

simply openssl encode c function

2012-05-26 Thread ml
hello honorable doctor all members ".." C Fu geeks and lady I try to use the functions correctly made ​​in native base64 openssl i managed a simple client mail with openssl base64 encoding I use the test client https://github.com/fakessh/openprojectssl/blob/master/smtp_openssl.c I try to realiz