Searched refs:PROV_RSA_CTX (Results 1 – 6 of 6) sorted by relevance
/third_party/openssl/providers/implementations/kem/ |
D | rsa_kem.c | 58 } PROV_RSA_CTX; typedef 85 PROV_RSA_CTX *prsactx = OPENSSL_zalloc(sizeof(PROV_RSA_CTX)); in rsakem_newctx() 97 PROV_RSA_CTX *prsactx = (PROV_RSA_CTX *)vprsactx; in rsakem_freectx() 105 PROV_RSA_CTX *srcctx = (PROV_RSA_CTX *)vprsactx; in rsakem_dupctx() 106 PROV_RSA_CTX *dstctx; in rsakem_dupctx() 123 PROV_RSA_CTX *prsactx = (PROV_RSA_CTX *)vprsactx; in rsakem_init() 153 PROV_RSA_CTX *ctx = (PROV_RSA_CTX *)vprsactx; in rsakem_get_ctx_params() 170 PROV_RSA_CTX *prsactx = (PROV_RSA_CTX *)vprsactx; in rsakem_set_ctx_params() 244 static int rsasve_generate(PROV_RSA_CTX *prsactx, in rsasve_generate() 292 static int rsasve_recover(PROV_RSA_CTX *prsactx, in rsasve_recover() [all …]
|
/third_party/node/deps/openssl/openssl/providers/implementations/kem/ |
D | rsa_kem.c | 58 } PROV_RSA_CTX; typedef 85 PROV_RSA_CTX *prsactx = OPENSSL_zalloc(sizeof(PROV_RSA_CTX)); in rsakem_newctx() 97 PROV_RSA_CTX *prsactx = (PROV_RSA_CTX *)vprsactx; in rsakem_freectx() 105 PROV_RSA_CTX *srcctx = (PROV_RSA_CTX *)vprsactx; in rsakem_dupctx() 106 PROV_RSA_CTX *dstctx; in rsakem_dupctx() 123 PROV_RSA_CTX *prsactx = (PROV_RSA_CTX *)vprsactx; in rsakem_init() 153 PROV_RSA_CTX *ctx = (PROV_RSA_CTX *)vprsactx; in rsakem_get_ctx_params() 170 PROV_RSA_CTX *prsactx = (PROV_RSA_CTX *)vprsactx; in rsakem_set_ctx_params() 244 static int rsasve_generate(PROV_RSA_CTX *prsactx, in rsasve_generate() 292 static int rsasve_recover(PROV_RSA_CTX *prsactx, in rsasve_recover() [all …]
|
/third_party/openssl/providers/implementations/signature/ |
D | rsa_sig.c | 110 } PROV_RSA_CTX; typedef 115 static size_t rsa_get_md_size(const PROV_RSA_CTX *prsactx) in rsa_get_md_size() 122 static int rsa_check_padding(const PROV_RSA_CTX *prsactx, in rsa_check_padding() 155 static int rsa_check_parameters(PROV_RSA_CTX *prsactx, int min_saltlen) in rsa_check_parameters() 175 PROV_RSA_CTX *prsactx = NULL; in rsa_newctx() 181 if ((prsactx = OPENSSL_zalloc(sizeof(PROV_RSA_CTX))) == NULL in rsa_newctx() 198 static int rsa_pss_compute_saltlen(PROV_RSA_CTX *ctx) in rsa_pss_compute_saltlen() 221 static unsigned char *rsa_generate_signature_aid(PROV_RSA_CTX *ctx, in rsa_generate_signature_aid() 283 static int rsa_setup_md(PROV_RSA_CTX *ctx, const char *mdname, in rsa_setup_md() 347 static int rsa_setup_mgf1_md(PROV_RSA_CTX *ctx, const char *mdname, in rsa_setup_mgf1_md() [all …]
|
/third_party/node/deps/openssl/openssl/providers/implementations/signature/ |
D | rsa_sig.c | 110 } PROV_RSA_CTX; typedef 115 static size_t rsa_get_md_size(const PROV_RSA_CTX *prsactx) in rsa_get_md_size() 122 static int rsa_check_padding(const PROV_RSA_CTX *prsactx, in rsa_check_padding() 155 static int rsa_check_parameters(PROV_RSA_CTX *prsactx, int min_saltlen) in rsa_check_parameters() 175 PROV_RSA_CTX *prsactx = NULL; in rsa_newctx() 181 if ((prsactx = OPENSSL_zalloc(sizeof(PROV_RSA_CTX))) == NULL in rsa_newctx() 198 static int rsa_pss_compute_saltlen(PROV_RSA_CTX *ctx) in rsa_pss_compute_saltlen() 221 static unsigned char *rsa_generate_signature_aid(PROV_RSA_CTX *ctx, in rsa_generate_signature_aid() 283 static int rsa_setup_md(PROV_RSA_CTX *ctx, const char *mdname, in rsa_setup_md() 347 static int rsa_setup_mgf1_md(PROV_RSA_CTX *ctx, const char *mdname, in rsa_setup_mgf1_md() [all …]
|
/third_party/openssl/providers/implementations/asymciphers/ |
D | rsa_enc.c | 78 } PROV_RSA_CTX; typedef 82 PROV_RSA_CTX *prsactx; in rsa_newctx() 86 prsactx = OPENSSL_zalloc(sizeof(PROV_RSA_CTX)); in rsa_newctx() 97 PROV_RSA_CTX *prsactx = (PROV_RSA_CTX *)vprsactx; in rsa_init() 138 PROV_RSA_CTX *prsactx = (PROV_RSA_CTX *)vprsactx; in rsa_encrypt() 200 PROV_RSA_CTX *prsactx = (PROV_RSA_CTX *)vprsactx; in rsa_decrypt() 289 PROV_RSA_CTX *prsactx = (PROV_RSA_CTX *)vprsactx; in rsa_freectx() 302 PROV_RSA_CTX *srcctx = (PROV_RSA_CTX *)vprsactx; in rsa_dupctx() 303 PROV_RSA_CTX *dstctx; in rsa_dupctx() 336 PROV_RSA_CTX *prsactx = (PROV_RSA_CTX *)vprsactx; in rsa_get_ctx_params() [all …]
|
/third_party/node/deps/openssl/openssl/providers/implementations/asymciphers/ |
D | rsa_enc.c | 78 } PROV_RSA_CTX; typedef 82 PROV_RSA_CTX *prsactx; in rsa_newctx() 86 prsactx = OPENSSL_zalloc(sizeof(PROV_RSA_CTX)); in rsa_newctx() 97 PROV_RSA_CTX *prsactx = (PROV_RSA_CTX *)vprsactx; in rsa_init() 138 PROV_RSA_CTX *prsactx = (PROV_RSA_CTX *)vprsactx; in rsa_encrypt() 200 PROV_RSA_CTX *prsactx = (PROV_RSA_CTX *)vprsactx; in rsa_decrypt() 289 PROV_RSA_CTX *prsactx = (PROV_RSA_CTX *)vprsactx; in rsa_freectx() 302 PROV_RSA_CTX *srcctx = (PROV_RSA_CTX *)vprsactx; in rsa_dupctx() 303 PROV_RSA_CTX *dstctx; in rsa_dupctx() 336 PROV_RSA_CTX *prsactx = (PROV_RSA_CTX *)vprsactx; in rsa_get_ctx_params() [all …]
|