summaryrefslogtreecommitdiff
path: root/crypto/pem/pem.h
diff options
context:
space:
mode:
authorBen Laurie <ben@openssl.org>1999-06-10 19:45:25 +0000
committerBen Laurie <ben@openssl.org>1999-06-10 19:45:25 +0000
commit84757d677f403a083ea0b823df8563812423114a (patch)
tree3d46b96ba9ae1a58bb0be4f4baf19fcb43e59c60 /crypto/pem/pem.h
parent522aefbb5a93bcaff998009686b4a07f6bacc655 (diff)
downloadopenssl-new-84757d677f403a083ea0b823df8563812423114a.tar.gz
Fix warnings.
Diffstat (limited to 'crypto/pem/pem.h')
-rw-r--r--crypto/pem/pem.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/crypto/pem/pem.h b/crypto/pem/pem.h
index 6c7387b604..3f89b0cd9b 100644
--- a/crypto/pem/pem.h
+++ b/crypto/pem/pem.h
@@ -502,7 +502,7 @@ int PEM_write_DSAPrivateKey(FILE *fp,DSA *x,const EVP_CIPHER *enc,
int PEM_write_PrivateKey(FILE *fp,EVP_PKEY *x,const EVP_CIPHER *enc,
unsigned char *kstr,int klen, pem_password_cb *);
int PEM_write_PKCS8PrivateKey(FILE *fp,EVP_PKEY *x,const EVP_CIPHER *enc,
- unsigned char *kstr,int klen, pem_password_cb *);
+ char *kstr,int klen, pem_password_cb *);
int PEM_write_PKCS7(FILE *fp,PKCS7 *x);
#ifndef NO_DH
int PEM_write_DHparams(FILE *fp,DH *x);
@@ -553,7 +553,7 @@ int PEM_write_bio_DSAPrivateKey(BIO *fp,DSA *x,const EVP_CIPHER *enc,
int PEM_write_bio_PrivateKey(BIO *fp,EVP_PKEY *x,const EVP_CIPHER *enc,
unsigned char *kstr,int klen, pem_password_cb *);
int PEM_write_bio_PKCS8PrivateKey(BIO *fp,EVP_PKEY *x,const EVP_CIPHER *enc,
- unsigned char *kstr,int klen, pem_password_cb *);
+ char *kstr,int klen, pem_password_cb *);
int PEM_write_bio_PKCS7(BIO *bp,PKCS7 *x);
#ifndef NO_DH
int PEM_write_bio_DHparams(BIO *bp,DH *x);