diff options
author | tb <> | 2023-05-28 05:25:24 +0000 |
---|---|---|
committer | tb <> | 2023-05-28 05:25:24 +0000 |
commit | a95e36808ea4031670010ec297a8701fa0500aaa (patch) | |
tree | ec517a3d5252ee6f882377da37f2eed9b56f843c /src/lib/libcrypto/x509/x509_vfy.h | |
parent | d4cbaebb201580abb6146f23b603e976b071aa6c (diff) | |
download | openbsd-a95e36808ea4031670010ec297a8701fa0500aaa.tar.gz openbsd-a95e36808ea4031670010ec297a8701fa0500aaa.tar.bz2 openbsd-a95e36808ea4031670010ec297a8701fa0500aaa.zip |
Merge X509_VERIFY_PARAM_ID into X509_VERIFY_PARAM
Back in the day when essentially every struct was open to all applications,
X509_VERIFY_PARAM_ID provided a modicum of opacity. This indirection is now
no longer needed with X509_VERIFY_PARAM being opaque itself, so stop using
X509_VERIFY_PARAM_ID and merge it into X509_VERIFY_PARAM. This is a first
small step towards cleaning up the X509_VERIFY_PARAM mess.
ok jsing
Diffstat (limited to 'src/lib/libcrypto/x509/x509_vfy.h')
-rw-r--r-- | src/lib/libcrypto/x509/x509_vfy.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/libcrypto/x509/x509_vfy.h b/src/lib/libcrypto/x509/x509_vfy.h index 202cf7438f..1aa29abd3d 100644 --- a/src/lib/libcrypto/x509/x509_vfy.h +++ b/src/lib/libcrypto/x509/x509_vfy.h | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: x509_vfy.h,v 1.63 2023/04/28 16:50:16 beck Exp $ */ | 1 | /* $OpenBSD: x509_vfy.h,v 1.64 2023/05/28 05:25:24 tb 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 | * |
@@ -105,7 +105,7 @@ DECLARE_STACK_OF(X509_LOOKUP) | |||
105 | DECLARE_STACK_OF(X509_OBJECT) | 105 | DECLARE_STACK_OF(X509_OBJECT) |
106 | DECLARE_STACK_OF(X509_VERIFY_PARAM) | 106 | DECLARE_STACK_OF(X509_VERIFY_PARAM) |
107 | 107 | ||
108 | /* unused in OpenSSL */ | 108 | /* XXX - unused in OpenSSL. Can we remove this? */ |
109 | typedef struct X509_VERIFY_PARAM_ID_st X509_VERIFY_PARAM_ID; | 109 | typedef struct X509_VERIFY_PARAM_ID_st X509_VERIFY_PARAM_ID; |
110 | 110 | ||
111 | 111 | ||