summaryrefslogtreecommitdiff
path: root/crypto/pem/pem.h
diff options
context:
space:
mode:
authorRalf S. Engelschall <rse@openssl.org>1999-05-04 08:56:51 +0000
committerRalf S. Engelschall <rse@openssl.org>1999-05-04 08:56:51 +0000
commit20b85fdd7644aa940e50a158a1b2c8010bb36443 (patch)
tree7ac94407e4e58de9fadc718886fbc62ca0972800 /crypto/pem/pem.h
parent0f3e6045898e9aa5d0249e61c874b1f153ae54fa (diff)
downloadopenssl-new-20b85fdd7644aa940e50a158a1b2c8010bb36443.tar.gz
Convert casted X509_INFO stacks to type-safe STACK_OF(X509_INFO).
PS: Feel free to move the IMPLEMENT_STACK_OF(X509_INFO) from crypto/asn1/x_info.c to any other place where you think it fits better. X509_INFO is a structure slightly spreaded over ASN.1, X509 and PEM code, so I found no definitive location for IMPLEMENT_STACK_OF(X509_INFO). In crypto/asn1/x_info.c it's at least now bundled with X509_INFO_new() and friends.
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 6f0f09fcbe..effa9545a4 100644
--- a/crypto/pem/pem.h
+++ b/crypto/pem/pem.h
@@ -331,7 +331,7 @@ char * PEM_ASN1_read_bio(char *(*d2i)(),const char *name,BIO *bp,char **x,
int PEM_ASN1_write_bio(int (*i2d)(),const char *name,BIO *bp,char *x,
const EVP_CIPHER *enc,unsigned char *kstr,int klen,
int (*callback)());
-STACK * PEM_X509_INFO_read_bio(BIO *bp, STACK *sk, int (*cb)());
+STACK_OF(X509_INFO) * PEM_X509_INFO_read_bio(BIO *bp, STACK_OF(X509_INFO) *sk, int (*cb)());
int PEM_X509_INFO_write_bio(BIO *bp,X509_INFO *xi, EVP_CIPHER *enc,
unsigned char *kstr, int klen, int (*cb)());
#endif
@@ -345,7 +345,7 @@ char * PEM_ASN1_read(char *(*d2i)(),const char *name,FILE *fp,char **x,
int PEM_ASN1_write(int (*i2d)(),const char *name,FILE *fp,char *x,
const EVP_CIPHER *enc,unsigned char *kstr,int klen,
int (*callback)());
-STACK * PEM_X509_INFO_read(FILE *fp, STACK *sk, int (*cb)());
+STACK_OF(X509_INFO) * PEM_X509_INFO_read(FILE *fp, STACK_OF(X509_INFO) *sk, int (*cb)());
#endif
int PEM_SealInit(PEM_ENCODE_SEAL_CTX *ctx, EVP_CIPHER *type,