diff options
Diffstat (limited to 'src/lib/libcrypto/x509/x509_vfy.h')
-rw-r--r-- | src/lib/libcrypto/x509/x509_vfy.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/lib/libcrypto/x509/x509_vfy.h b/src/lib/libcrypto/x509/x509_vfy.h index c5eae9d398..a68d5c0840 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.30 2018/08/24 19:21:09 tb Exp $ */ | 1 | /* $OpenBSD: x509_vfy.h,v 1.31 2020/09/13 15:06:17 beck 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 | * |
@@ -407,6 +407,9 @@ void X509_STORE_CTX_set_depth(X509_STORE_CTX *ctx, int depth); | |||
407 | /* Do not check certificate or CRL validity against current time. */ | 407 | /* Do not check certificate or CRL validity against current time. */ |
408 | #define X509_V_FLAG_NO_CHECK_TIME 0x200000 | 408 | #define X509_V_FLAG_NO_CHECK_TIME 0x200000 |
409 | 409 | ||
410 | /* Force the use of the legacy certificate verifcation */ | ||
411 | #define X509_V_FLAG_LEGACY_VERIFY 0x400000 | ||
412 | |||
410 | #define X509_VP_FLAG_DEFAULT 0x1 | 413 | #define X509_VP_FLAG_DEFAULT 0x1 |
411 | #define X509_VP_FLAG_OVERWRITE 0x2 | 414 | #define X509_VP_FLAG_OVERWRITE 0x2 |
412 | #define X509_VP_FLAG_RESET_FLAGS 0x4 | 415 | #define X509_VP_FLAG_RESET_FLAGS 0x4 |