diff options
author | jsing <> | 2018-02-22 17:19:31 +0000 |
---|---|---|
committer | jsing <> | 2018-02-22 17:19:31 +0000 |
commit | ad4d23963c693bccd4966fffee2d9bdf5f461260 (patch) | |
tree | e561041dae5f71c591b7a3936df8c13839921ad2 /src/lib/libcrypto/x509/x509_vfy.h | |
parent | 9bb8b88ba75274cdfc424822a5a98bff2c8788bd (diff) | |
download | openbsd-ad4d23963c693bccd4966fffee2d9bdf5f461260.tar.gz openbsd-ad4d23963c693bccd4966fffee2d9bdf5f461260.tar.bz2 openbsd-ad4d23963c693bccd4966fffee2d9bdf5f461260.zip |
Provide X509_STORE_get0_objects(), X509_STORE_get_ex_data() and
X509_STORE_set_ex_data().
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 a62f89a64e..f9b215ee65 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.23 2018/02/22 17:17:09 jsing Exp $ */ | 1 | /* $OpenBSD: x509_vfy.h,v 1.24 2018/02/22 17:19:31 jsing 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 | * |
@@ -434,6 +434,9 @@ void X509_STORE_free(X509_STORE *v); | |||
434 | int X509_STORE_up_ref(X509_STORE *x); | 434 | int X509_STORE_up_ref(X509_STORE *x); |
435 | STACK_OF(X509)* X509_STORE_get1_certs(X509_STORE_CTX *st, X509_NAME *nm); | 435 | STACK_OF(X509)* X509_STORE_get1_certs(X509_STORE_CTX *st, X509_NAME *nm); |
436 | STACK_OF(X509_CRL)* X509_STORE_get1_crls(X509_STORE_CTX *st, X509_NAME *nm); | 436 | STACK_OF(X509_CRL)* X509_STORE_get1_crls(X509_STORE_CTX *st, X509_NAME *nm); |
437 | STACK_OF(X509_OBJECT) *X509_STORE_get0_objects(X509_STORE *xs); | ||
438 | void *X509_STORE_get_ex_data(X509_STORE *xs, int idx); | ||
439 | int X509_STORE_set_ex_data(X509_STORE *xs, int idx, void *data); | ||
437 | 440 | ||
438 | int X509_STORE_set_flags(X509_STORE *ctx, unsigned long flags); | 441 | int X509_STORE_set_flags(X509_STORE *ctx, unsigned long flags); |
439 | int X509_STORE_set_purpose(X509_STORE *ctx, int purpose); | 442 | int X509_STORE_set_purpose(X509_STORE *ctx, int purpose); |