• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/openssl/crypto/x509/

Lines Matching refs:X509_STORE_CTX

73 static int null_callback(int ok,X509_STORE_CTX *e);
74 static int check_issued(X509_STORE_CTX *ctx, X509 *x, X509 *issuer);
75 static X509 *find_issuer(X509_STORE_CTX *ctx, STACK_OF(X509) *sk, X509 *x);
76 static int check_chain_extensions(X509_STORE_CTX *ctx);
77 static int check_trust(X509_STORE_CTX *ctx);
78 static int check_revocation(X509_STORE_CTX *ctx);
79 static int check_cert(X509_STORE_CTX *ctx);
80 static int internal_verify(X509_STORE_CTX *ctx);
84 static int null_callback(int ok, X509_STORE_CTX *e)
96 int X509_verify_cert(X509_STORE_CTX *ctx)
323 static X509 *find_issuer(X509_STORE_CTX *ctx, STACK_OF(X509) *sk, X509 *x)
338 static int check_issued(X509_STORE_CTX *ctx, X509 *x, X509 *issuer)
357 static int get_issuer_sk(X509 **issuer, X509_STORE_CTX *ctx, X509 *x)
374 static int check_chain_extensions(X509_STORE_CTX *ctx)
482 static int check_trust(X509_STORE_CTX *ctx)
508 static int check_revocation(X509_STORE_CTX *ctx)
526 static int check_cert(X509_STORE_CTX *ctx)
560 static int get_crl(X509_STORE_CTX *ctx, X509_CRL **crl, X509 *x)
571 static int check_crl(X509_STORE_CTX *ctx, X509_CRL *crl)
676 static int cert_crl(X509_STORE_CTX *ctx, X509_CRL *crl, X509 *x)
731 static int internal_verify(X509_STORE_CTX *ctx)
1008 int X509_STORE_CTX_set_ex_data(X509_STORE_CTX *ctx, int idx, void *data)
1013 void *X509_STORE_CTX_get_ex_data(X509_STORE_CTX *ctx, int idx)
1018 int X509_STORE_CTX_get_error(X509_STORE_CTX *ctx)
1023 void X509_STORE_CTX_set_error(X509_STORE_CTX *ctx, int err)
1028 int X509_STORE_CTX_get_error_depth(X509_STORE_CTX *ctx)
1033 X509 *X509_STORE_CTX_get_current_cert(X509_STORE_CTX *ctx)
1038 STACK_OF(X509) *X509_STORE_CTX_get_chain(X509_STORE_CTX *ctx)
1043 STACK_OF(X509) *X509_STORE_CTX_get1_chain(X509_STORE_CTX *ctx)
1057 void X509_STORE_CTX_set_cert(X509_STORE_CTX *ctx, X509 *x)
1062 void X509_STORE_CTX_set_chain(X509_STORE_CTX *ctx, STACK_OF(X509) *sk)
1067 int X509_STORE_CTX_set_purpose(X509_STORE_CTX *ctx, int purpose)
1072 int X509_STORE_CTX_set_trust(X509_STORE_CTX *ctx, int trust)
1077 /* This function is used to set the X509_STORE_CTX purpose and trust
1087 int X509_STORE_CTX_purpose_inherit(X509_STORE_CTX *ctx, int def_purpose,
1135 X509_STORE_CTX *X509_STORE_CTX_new(void)
1137 X509_STORE_CTX *ctx;
1138 ctx = (X509_STORE_CTX *)OPENSSL_malloc(sizeof(X509_STORE_CTX));
1144 memset(ctx, 0, sizeof(X509_STORE_CTX));
1148 void X509_STORE_CTX_free(X509_STORE_CTX *ctx)
1154 int X509_STORE_CTX_init(X509_STORE_CTX *ctx, X509_STORE *store, X509 *x509,
1251 void X509_STORE_CTX_trusted_stack(X509_STORE_CTX *ctx, STACK_OF(X509) *sk)
1257 void X509_STORE_CTX_cleanup(X509_STORE_CTX *ctx)
1269 void X509_STORE_CTX_set_flags(X509_STORE_CTX *ctx, long flags)
1274 void X509_STORE_CTX_set_time(X509_STORE_CTX *ctx, long flags, time_t t)
1280 void X509_STORE_CTX_set_verify_cb(X509_STORE_CTX *ctx,
1281 int (*verify_cb)(int, X509_STORE_CTX *))