Lines Matching refs:CAPI_CTX

105 typedef struct CAPI_CTX_st CAPI_CTX;  typedef
111 static void CAPI_trace(CAPI_CTX *ctx, char *format, ...);
113 static int capi_list_providers(CAPI_CTX *ctx, BIO *out);
114 static int capi_list_containers(CAPI_CTX *ctx, BIO *out);
115 int capi_list_certs(CAPI_CTX *ctx, BIO *out, char *storename);
118 static PCCERT_CONTEXT capi_find_cert(CAPI_CTX *ctx, const char *id,
121 CAPI_KEY *capi_find_key(CAPI_CTX *ctx, const char *id);
195 static CAPI_CTX *capi_ctx_new(void);
196 static void capi_ctx_free(CAPI_CTX *ctx);
197 static int capi_ctx_set_provname(CAPI_CTX *ctx, LPSTR pname, DWORD type,
199 static int capi_ctx_set_provname_idx(CAPI_CTX *ctx, int idx);
286 CAPI_CTX *ctx; in capi_ctrl()
408 CAPI_CTX *ctx; in capi_init()
509 CAPI_CTX *ctx; in capi_finish()
786 CAPI_CTX *ctx; in capi_load_privkey()
827 CAPI_CTX *ctx; in capi_rsa_sign()
919 CAPI_CTX *ctx; in capi_rsa_priv_dec()
999 CAPI_CTX *ctx; in capi_dsa_do_sign()
1070 static void capi_vtrace(CAPI_CTX *ctx, int level, char *format, in capi_vtrace()
1086 static void CAPI_trace(CAPI_CTX *ctx, char *format, ...) in CAPI_trace()
1132 static int capi_get_provname(CAPI_CTX *ctx, LPSTR *pname, DWORD *ptype, in capi_get_provname()
1174 static int capi_list_providers(CAPI_CTX *ctx, BIO *out) in capi_list_providers()
1193 static int capi_list_containers(CAPI_CTX *ctx, BIO *out) in capi_list_containers()
1275 static CRYPT_KEY_PROV_INFO *capi_get_prov_info(CAPI_CTX *ctx, in capi_get_prov_info()
1300 static void capi_dump_prov_info(CAPI_CTX *ctx, BIO *out, in capi_dump_prov_info()
1323 static char *capi_cert_get_fname(CAPI_CTX *ctx, PCCERT_CONTEXT cert) in capi_cert_get_fname()
1348 static void capi_dump_cert(CAPI_CTX *ctx, BIO *out, PCCERT_CONTEXT cert) in capi_dump_cert()
1390 static HCERTSTORE capi_open_store(CAPI_CTX *ctx, char *storename) in capi_open_store()
1409 int capi_list_certs(CAPI_CTX *ctx, BIO *out, char *id) in capi_list_certs()
1447 static PCCERT_CONTEXT capi_find_cert(CAPI_CTX *ctx, const char *id, in capi_find_cert()
1478 static CAPI_KEY *capi_get_key(CAPI_CTX *ctx, const WCHAR *contname, in capi_get_key()
1529 static CAPI_KEY *capi_get_cert_key(CAPI_CTX *ctx, PCCERT_CONTEXT cert) in capi_get_cert_key()
1544 CAPI_KEY *capi_find_key(CAPI_CTX *ctx, const char *id) in capi_find_key()
1599 static CAPI_CTX *capi_ctx_new(void) in capi_ctx_new()
1601 CAPI_CTX *ctx = OPENSSL_zalloc(sizeof(*ctx)); in capi_ctx_new()
1617 static void capi_ctx_free(CAPI_CTX *ctx) in capi_ctx_free()
1629 static int capi_ctx_set_provname(CAPI_CTX *ctx, LPSTR pname, DWORD type, in capi_ctx_set_provname()
1664 static int capi_ctx_set_provname_idx(CAPI_CTX *ctx, int idx) in capi_ctx_set_provname_idx()
1704 CAPI_CTX *ctx; in capi_load_ssl_client_cert()
1827 CAPI_CTX *ctx; in cert_select_dialog()