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;
> >
>
> 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