diff options
author | tb <> | 2023-04-16 18:42:30 +0000 |
---|---|---|
committer | tb <> | 2023-04-16 18:42:30 +0000 |
commit | aaf55fdba134804a9eb1a42c03415548fbd2b490 (patch) | |
tree | ea2522aa9ce34924692861107efecc3e998cd3d1 /src/lib/libcrypto/x509/vpm_int.h | |
parent | 3142f6dc26e453ca269ab50d6c1b81f138e16f52 (diff) | |
download | openbsd-aaf55fdba134804a9eb1a42c03415548fbd2b490.tar.gz openbsd-aaf55fdba134804a9eb1a42c03415548fbd2b490.tar.bz2 openbsd-aaf55fdba134804a9eb1a42c03415548fbd2b490.zip |
Move X509_VERIFY_PARAM_st from vpm_int.h to x509_local.h
Diffstat (limited to 'src/lib/libcrypto/x509/vpm_int.h')
-rw-r--r-- | src/lib/libcrypto/x509/vpm_int.h | 13 |
1 files changed, 1 insertions, 12 deletions
diff --git a/src/lib/libcrypto/x509/vpm_int.h b/src/lib/libcrypto/x509/vpm_int.h index 7fc9fef761..d50c5e46fd 100644 --- a/src/lib/libcrypto/x509/vpm_int.h +++ b/src/lib/libcrypto/x509/vpm_int.h | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: vpm_int.h,v 1.4 2018/04/06 07:08:20 beck Exp $ */ | 1 | /* $OpenBSD: vpm_int.h,v 1.5 2023/04/16 18:42:30 tb Exp $ */ |
2 | /* | 2 | /* |
3 | * Written by Dr Stephen N Henson (steve@openssl.org) for the OpenSSL project | 3 | * Written by Dr Stephen N Henson (steve@openssl.org) for the OpenSSL project |
4 | * 2013. | 4 | * 2013. |
@@ -61,15 +61,4 @@ __BEGIN_HIDDEN_DECLS | |||
61 | 61 | ||
62 | /* internal only structure to hold additional X509_VERIFY_PARAM data */ | 62 | /* internal only structure to hold additional X509_VERIFY_PARAM data */ |
63 | 63 | ||
64 | struct X509_VERIFY_PARAM_ID_st { | ||
65 | STACK_OF(OPENSSL_STRING) *hosts; /* Set of acceptable names */ | ||
66 | unsigned int hostflags; /* Flags to control matching features */ | ||
67 | char *peername; /* Matching hostname in peer certificate */ | ||
68 | char *email; /* If not NULL email address to match */ | ||
69 | size_t emaillen; | ||
70 | unsigned char *ip; /* If not NULL IP address to match */ | ||
71 | size_t iplen; /* Length of IP address */ | ||
72 | int poisoned; | ||
73 | }; | ||
74 | |||
75 | __END_HIDDEN_DECLS | 64 | __END_HIDDEN_DECLS |