summaryrefslogtreecommitdiff
path: root/src/lib/libcrypto/ossl_typ.h
diff options
context:
space:
mode:
authortb <>2021-11-01 20:53:08 +0000
committertb <>2021-11-01 20:53:08 +0000
commitb1d784eb6c4f1df06e96cfc40e2434cf76165cbe (patch)
treecbf2de4e6ef2a9e9d9281e6e60c30149cd648fd1 /src/lib/libcrypto/ossl_typ.h
parent95589e2e9b8cb0aa7ceb0bdf1ad9af358f6564db (diff)
downloadopenbsd-b1d784eb6c4f1df06e96cfc40e2434cf76165cbe.tar.gz
openbsd-b1d784eb6c4f1df06e96cfc40e2434cf76165cbe.tar.bz2
openbsd-b1d784eb6c4f1df06e96cfc40e2434cf76165cbe.zip
Move the now internal X.509-related structs into x509_lcl.h.
Garbage collect the now unused LIBRESSL_CRYPTO_INTERNAL and LIBRESSL_OPAQUE_X509. Include "x509_lcl.h" where needed and fix a couple of unnecessary reacharounds. ok jsing
Diffstat (limited to 'src/lib/libcrypto/ossl_typ.h')
-rw-r--r--src/lib/libcrypto/ossl_typ.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/lib/libcrypto/ossl_typ.h b/src/lib/libcrypto/ossl_typ.h
index 234fdca1ea..99f120644f 100644
--- a/src/lib/libcrypto/ossl_typ.h
+++ b/src/lib/libcrypto/ossl_typ.h
@@ -1,4 +1,4 @@
1/* $OpenBSD: ossl_typ.h,v 1.13 2015/09/30 04:10:07 doug Exp $ */ 1/* $OpenBSD: ossl_typ.h,v 1.14 2021/11/01 20:53:08 tb Exp $ */
2/* ==================================================================== 2/* ====================================================================
3 * Copyright (c) 1998-2001 The OpenSSL Project. All rights reserved. 3 * Copyright (c) 1998-2001 The OpenSSL Project. All rights reserved.
4 * 4 *
@@ -127,6 +127,11 @@ typedef struct X509_pubkey_st X509_PUBKEY;
127typedef struct x509_store_st X509_STORE; 127typedef struct x509_store_st X509_STORE;
128typedef struct x509_store_ctx_st X509_STORE_CTX; 128typedef struct x509_store_ctx_st X509_STORE_CTX;
129 129
130typedef struct x509_object_st X509_OBJECT;
131typedef struct x509_lookup_st X509_LOOKUP;
132typedef struct x509_lookup_method_st X509_LOOKUP_METHOD;
133typedef struct X509_VERIFY_PARAM_st X509_VERIFY_PARAM;
134
130typedef struct pkcs8_priv_key_info_st PKCS8_PRIV_KEY_INFO; 135typedef struct pkcs8_priv_key_info_st PKCS8_PRIV_KEY_INFO;
131 136
132typedef struct v3_ext_ctx X509V3_CTX; 137typedef struct v3_ext_ctx X509V3_CTX;