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()
353 static int x509_store_add(X509_STORE *store, void *x, int crl) { in x509_store_add()
396 int X509_STORE_add_cert(X509_STORE *ctx, X509 *x) in X509_STORE_add_cert()
405 int X509_STORE_add_crl(X509_STORE *ctx, X509_CRL *x) in X509_STORE_add_crl()
546 STACK_OF(X509_OBJECT) *X509_STORE_get0_objects(const X509_STORE *v) in STACK_OF()
551 STACK_OF(X509) *X509_STORE_get1_all_certs(X509_STORE *store) in STACK_OF()
591 X509_STORE *store = ctx->store; in STACK_OF()
646 X509_STORE *store = ctx->store; in STACK_OF()
729 X509_STORE *store = ctx->store; in X509_STORE_CTX_get1_issuer()
800 int X509_STORE_set_flags(X509_STORE *ctx, unsigned long flags) in X509_STORE_set_flags()
805 int X509_STORE_set_depth(X509_STORE *ctx, int depth) in X509_STORE_set_depth()
811 int X509_STORE_set_purpose(X509_STORE *ctx, int purpose) in X509_STORE_set_purpose()
816 int X509_STORE_set_trust(X509_STORE *ctx, int trust) in X509_STORE_set_trust()
821 int X509_STORE_set1_param(X509_STORE *ctx, const X509_VERIFY_PARAM *param) in X509_STORE_set1_param()
826 X509_VERIFY_PARAM *X509_STORE_get0_param(const X509_STORE *ctx) in X509_STORE_get0_param()
831 void X509_STORE_set_verify(X509_STORE *ctx, X509_STORE_CTX_verify_fn verify) in X509_STORE_set_verify()
836 X509_STORE_CTX_verify_fn X509_STORE_get_verify(const X509_STORE *ctx) in X509_STORE_get_verify()
841 void X509_STORE_set_verify_cb(X509_STORE *ctx, in X509_STORE_set_verify_cb()
847 X509_STORE_CTX_verify_cb X509_STORE_get_verify_cb(const X509_STORE *ctx) in X509_STORE_get_verify_cb()
852 void X509_STORE_set_get_issuer(X509_STORE *ctx, in X509_STORE_set_get_issuer()
858 X509_STORE_CTX_get_issuer_fn X509_STORE_get_get_issuer(const X509_STORE *ctx) in X509_STORE_get_get_issuer()
863 void X509_STORE_set_check_issued(X509_STORE *ctx, in X509_STORE_set_check_issued()
869 X509_STORE_CTX_check_issued_fn X509_STORE_get_check_issued(const X509_STORE *ctx) in X509_STORE_get_check_issued()
874 void X509_STORE_set_check_revocation(X509_STORE *ctx, in X509_STORE_set_check_revocation()
880 X509_STORE_CTX_check_revocation_fn X509_STORE_get_check_revocation(const X509_STORE *ctx) in X509_STORE_get_check_revocation()
885 void X509_STORE_set_get_crl(X509_STORE *ctx, in X509_STORE_set_get_crl()
891 X509_STORE_CTX_get_crl_fn X509_STORE_get_get_crl(const X509_STORE *ctx) in X509_STORE_get_get_crl()
896 void X509_STORE_set_check_crl(X509_STORE *ctx, in X509_STORE_set_check_crl()
902 X509_STORE_CTX_check_crl_fn X509_STORE_get_check_crl(const X509_STORE *ctx) in X509_STORE_get_check_crl()
907 void X509_STORE_set_cert_crl(X509_STORE *ctx, in X509_STORE_set_cert_crl()
913 X509_STORE_CTX_cert_crl_fn X509_STORE_get_cert_crl(const X509_STORE *ctx) in X509_STORE_get_cert_crl()
918 void X509_STORE_set_check_policy(X509_STORE *ctx, in X509_STORE_set_check_policy()
924 X509_STORE_CTX_check_policy_fn X509_STORE_get_check_policy(const X509_STORE *ctx) in X509_STORE_get_check_policy()
929 void X509_STORE_set_lookup_certs(X509_STORE *ctx, in X509_STORE_set_lookup_certs()
935 X509_STORE_CTX_lookup_certs_fn X509_STORE_get_lookup_certs(const X509_STORE *ctx) in X509_STORE_get_lookup_certs()
940 void X509_STORE_set_lookup_crls(X509_STORE *ctx, in X509_STORE_set_lookup_crls()
946 X509_STORE_CTX_lookup_crls_fn X509_STORE_get_lookup_crls(const X509_STORE *ctx) in X509_STORE_get_lookup_crls()
951 void X509_STORE_set_cleanup(X509_STORE *ctx, in X509_STORE_set_cleanup()
957 X509_STORE_CTX_cleanup_fn X509_STORE_get_cleanup(const X509_STORE *ctx) in X509_STORE_get_cleanup()
962 int X509_STORE_set_ex_data(X509_STORE *ctx, int idx, void *data) in X509_STORE_set_ex_data()
967 void *X509_STORE_get_ex_data(const X509_STORE *ctx, int idx) in X509_STORE_get_ex_data()
972 X509_STORE *X509_STORE_CTX_get0_store(const X509_STORE_CTX *ctx) in X509_STORE_CTX_get0_store()