aboutsummaryrefslogtreecommitdiffstats
path: root/crypto/x509
diff options
context:
space:
mode:
authorDr. Stephen Henson <steve@openssl.org>1999-12-24 17:26:33 +0000
committerDr. Stephen Henson <steve@openssl.org>1999-12-24 17:26:33 +0000
commit12aefe78f0aec57159e396b5fd8f71644a76b631 (patch)
tree65268b7691f72fd68d460e1db029f5bb54939334 /crypto/x509
parent525f51f6c98751de4db3b81789044d32e3686cda (diff)
downloadopenssl-12aefe78f0aec57159e396b5fd8f71644a76b631.tar.gz
Fixes so NO_RSA works again.
Diffstat (limited to 'crypto/x509')
-rw-r--r--crypto/x509/x509.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/crypto/x509/x509.h b/crypto/x509/x509.h
index 5e4da0f7c4..68b5818c95 100644
--- a/crypto/x509/x509.h
+++ b/crypto/x509/x509.h
@@ -747,12 +747,16 @@ int X509_get_pubkey_parameters(EVP_PKEY *pkey,
int i2d_PUBKEY(EVP_PKEY *a,unsigned char **pp);
EVP_PKEY * d2i_PUBKEY(EVP_PKEY **a,unsigned char **pp,
long length);
+#ifndef NO_RSA
int i2d_RSA_PUBKEY(RSA *a,unsigned char **pp);
RSA * d2i_RSA_PUBKEY(RSA **a,unsigned char **pp,
long length);
+#endif
+#ifndef NO_DSA
int i2d_DSA_PUBKEY(DSA *a,unsigned char **pp);
DSA * d2i_DSA_PUBKEY(DSA **a,unsigned char **pp,
long length);
+#endif
X509_SIG * X509_SIG_new(void );
void X509_SIG_free(X509_SIG *a);