Lines Matching refs:X509_STORE
44 int X509_STORE_lock(X509_STORE *s) in X509_STORE_lock()
49 int X509_STORE_unlock(X509_STORE *s) in X509_STORE_unlock()
152 X509_STORE *X509_LOOKUP_get_store(const X509_LOOKUP *ctx) in X509_LOOKUP_get_store()
180 X509_STORE *X509_STORE_new(void) in X509_STORE_new()
182 X509_STORE *ret = OPENSSL_zalloc(sizeof(*ret)); in X509_STORE_new()
223 void X509_STORE_free(X509_STORE *vfy) in X509_STORE_free()
252 int X509_STORE_up_ref(X509_STORE *vfy) in X509_STORE_up_ref()
264 X509_LOOKUP *X509_STORE_add_lookup(X509_STORE *v, X509_LOOKUP_METHOD *m) in X509_STORE_add_lookup()
313 X509_STORE *store = vs->store; in X509_STORE_CTX_get_by_subject()
351 static int x509_store_add(X509_STORE *store, void *x, int crl) { in x509_store_add()
389 int X509_STORE_add_cert(X509_STORE *ctx, X509 *x) in X509_STORE_add_cert()
398 int X509_STORE_add_crl(X509_STORE *ctx, X509_CRL *x) in X509_STORE_add_crl()
539 STACK_OF(X509_OBJECT) *X509_STORE_get0_objects(const X509_STORE *v) in STACK_OF()
544 STACK_OF(X509) *X509_STORE_get1_all_certs(X509_STORE *store) in STACK_OF()
581 X509_STORE *store = ctx->store; in STACK_OF()
633 X509_STORE *store = ctx->store; in STACK_OF()
713 X509_STORE *store = ctx->store; in X509_STORE_CTX_get1_issuer()
782 int X509_STORE_set_flags(X509_STORE *ctx, unsigned long flags) in X509_STORE_set_flags()
787 int X509_STORE_set_depth(X509_STORE *ctx, int depth) in X509_STORE_set_depth()
793 int X509_STORE_set_purpose(X509_STORE *ctx, int purpose) in X509_STORE_set_purpose()
798 int X509_STORE_set_trust(X509_STORE *ctx, int trust) in X509_STORE_set_trust()
803 int X509_STORE_set1_param(X509_STORE *ctx, const X509_VERIFY_PARAM *param) in X509_STORE_set1_param()
808 X509_VERIFY_PARAM *X509_STORE_get0_param(const X509_STORE *ctx) in X509_STORE_get0_param()
813 void X509_STORE_set_verify(X509_STORE *ctx, X509_STORE_CTX_verify_fn verify) in X509_STORE_set_verify()
818 X509_STORE_CTX_verify_fn X509_STORE_get_verify(const X509_STORE *ctx) in X509_STORE_get_verify()
823 void X509_STORE_set_verify_cb(X509_STORE *ctx, in X509_STORE_set_verify_cb()
829 X509_STORE_CTX_verify_cb X509_STORE_get_verify_cb(const X509_STORE *ctx) in X509_STORE_get_verify_cb()
834 void X509_STORE_set_get_issuer(X509_STORE *ctx, in X509_STORE_set_get_issuer()
840 X509_STORE_CTX_get_issuer_fn X509_STORE_get_get_issuer(const X509_STORE *ctx) in X509_STORE_get_get_issuer()
845 void X509_STORE_set_check_issued(X509_STORE *ctx, in X509_STORE_set_check_issued()
851 X509_STORE_CTX_check_issued_fn X509_STORE_get_check_issued(const X509_STORE *ctx) in X509_STORE_get_check_issued()
856 void X509_STORE_set_check_revocation(X509_STORE *ctx, in X509_STORE_set_check_revocation()
862 X509_STORE_CTX_check_revocation_fn X509_STORE_get_check_revocation(const X509_STORE *ctx) in X509_STORE_get_check_revocation()
867 void X509_STORE_set_get_crl(X509_STORE *ctx, in X509_STORE_set_get_crl()
873 X509_STORE_CTX_get_crl_fn X509_STORE_get_get_crl(const X509_STORE *ctx) in X509_STORE_get_get_crl()
878 void X509_STORE_set_check_crl(X509_STORE *ctx, in X509_STORE_set_check_crl()
884 X509_STORE_CTX_check_crl_fn X509_STORE_get_check_crl(const X509_STORE *ctx) in X509_STORE_get_check_crl()
889 void X509_STORE_set_cert_crl(X509_STORE *ctx, in X509_STORE_set_cert_crl()
895 X509_STORE_CTX_cert_crl_fn X509_STORE_get_cert_crl(const X509_STORE *ctx) in X509_STORE_get_cert_crl()
900 void X509_STORE_set_check_policy(X509_STORE *ctx, in X509_STORE_set_check_policy()
906 X509_STORE_CTX_check_policy_fn X509_STORE_get_check_policy(const X509_STORE *ctx) in X509_STORE_get_check_policy()
911 void X509_STORE_set_lookup_certs(X509_STORE *ctx, in X509_STORE_set_lookup_certs()
917 X509_STORE_CTX_lookup_certs_fn X509_STORE_get_lookup_certs(const X509_STORE *ctx) in X509_STORE_get_lookup_certs()
922 void X509_STORE_set_lookup_crls(X509_STORE *ctx, in X509_STORE_set_lookup_crls()
928 X509_STORE_CTX_lookup_crls_fn X509_STORE_get_lookup_crls(const X509_STORE *ctx) in X509_STORE_get_lookup_crls()
933 void X509_STORE_set_cleanup(X509_STORE *ctx, in X509_STORE_set_cleanup()
939 X509_STORE_CTX_cleanup_fn X509_STORE_get_cleanup(const X509_STORE *ctx) in X509_STORE_get_cleanup()
944 int X509_STORE_set_ex_data(X509_STORE *ctx, int idx, void *data) in X509_STORE_set_ex_data()
949 void *X509_STORE_get_ex_data(const X509_STORE *ctx, int idx) in X509_STORE_get_ex_data()
954 X509_STORE *X509_STORE_CTX_get0_store(const X509_STORE_CTX *ctx) in X509_STORE_CTX_get0_store()