Re: Remove Ask for a pass phrase

2008-10-14 Thread So Gerald
char passwd[] = {0} 2008/8/27 delcour.pierre <[EMAIL PROTECTED]> > Hello everyone, > > I'm trying to load a private key with this function : > > /EVP_PKEY *PEM_read_PrivateKey(FILE *fp, EVP_PKEY **x,pem_password_cb *cb, > void *u);/ > > I use it this way : > EVP_PKEY* key = PEM_read_Privatekey(fi

Remove Ask for a pass phrase

2008-08-28 Thread delcour.pierre
Hello everyone, I'm trying to load a private key with this function : /EVP_PKEY *PEM_read_PrivateKey(FILE *fp, EVP_PKEY **x,pem_password_cb *cb, void *u);/ I use it this way : EVP_PKEY* key = PEM_read_Privatekey(file,NULL,NULL,passwd); with file a File* containing the correct file, and passwd

Remove ask for a pass phrase

2008-08-28 Thread delcour.pierre
Hello everyone, I'm trying to load a private key with this function : /EVP_PKEY *PEM_read_PrivateKey(FILE *fp, EVP_PKEY **x,pem_password_cb *cb, void *u);/ I use it this way : EVP_PKEY* key = PEM_read_Privatekey(file,NULL,NULL,passwd); with file a File* containing the correct file, and passwd