rsa_import_pkcs8 - passwd is now "const void *"

This commit is contained in:
Karel Miko
2017-04-04 09:14:57 +02:00
committed by Steffen Jaeckel
parent d96f4bdcff
commit 52a496e9e1
2 changed files with 7 additions and 5 deletions
+1 -1
View File
@@ -109,7 +109,7 @@ int rsa_import(const unsigned char *in, unsigned long inlen, rsa_key *key);
int rsa_import_x509(const unsigned char *in, unsigned long inlen, rsa_key *key);
int rsa_import_pkcs8(const unsigned char *in, unsigned long inlen,
const unsigned char *passwd, unsigned long passwdlen, rsa_key *key);
const void *passwd, unsigned long passwdlen, rsa_key *key);
int rsa_import_radix(int radix, char *N, char *e, char *d, char *p, char *q, char *dP, char *dQ, char *qP, rsa_key *key);
#endif