summaryrefslogtreecommitdiff
path: root/src/lib/libcrypto/x509
diff options
context:
space:
mode:
authordoug <>2015-04-12 15:15:51 +0000
committerdoug <>2015-04-12 15:15:51 +0000
commitecccb89eeee5c8174d370147c737ee62dcd006d6 (patch)
treea2c23d496914eae83be511d4f5f0df8f660817f9 /src/lib/libcrypto/x509
parent0f4348bfcce7ca22317af7acf3b98ba84ad07eaa (diff)
downloadopenbsd-ecccb89eeee5c8174d370147c737ee62dcd006d6.tar.gz
openbsd-ecccb89eeee5c8174d370147c737ee62dcd006d6.tar.bz2
openbsd-ecccb89eeee5c8174d370147c737ee62dcd006d6.zip
Remove d2i_X509_PKEY and i2d_X509_PKEY from the SSLeay days.
i2d_X509_PKEY is a "needs to implement" and d2i_X509_PKEY is broken. Removed upstream in commit b1f3442857c1fd76e91941141bf671d19e90a79d. ok deraadt@, jsing@
Diffstat (limited to 'src/lib/libcrypto/x509')
-rw-r--r--src/lib/libcrypto/x509/x509.h4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/lib/libcrypto/x509/x509.h b/src/lib/libcrypto/x509/x509.h
index ec6668d35e..cf00ea5ebe 100644
--- a/src/lib/libcrypto/x509/x509.h
+++ b/src/lib/libcrypto/x509/x509.h
@@ -1,4 +1,4 @@
1/* $OpenBSD: x509.h,v 1.22 2015/02/11 02:17:59 jsing Exp $ */ 1/* $OpenBSD: x509.h,v 1.23 2015/04/12 15:15:51 doug Exp $ */
2/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) 2/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
3 * All rights reserved. 3 * All rights reserved.
4 * 4 *
@@ -857,8 +857,6 @@ int X509_CRL_get0_by_cert(X509_CRL *crl, X509_REVOKED **ret, X509 *x);
857 857
858X509_PKEY * X509_PKEY_new(void ); 858X509_PKEY * X509_PKEY_new(void );
859void X509_PKEY_free(X509_PKEY *a); 859void X509_PKEY_free(X509_PKEY *a);
860int i2d_X509_PKEY(X509_PKEY *a,unsigned char **pp);
861X509_PKEY * d2i_X509_PKEY(X509_PKEY **a,const unsigned char **pp,long length);
862 860
863DECLARE_ASN1_FUNCTIONS(NETSCAPE_SPKI) 861DECLARE_ASN1_FUNCTIONS(NETSCAPE_SPKI)
864DECLARE_ASN1_FUNCTIONS(NETSCAPE_SPKAC) 862DECLARE_ASN1_FUNCTIONS(NETSCAPE_SPKAC)