Searched refs:vkey (Results 1 – 4 of 4) sorted by relevance
/openssl-master/test/ |
A D | tls-provider.c | 242 static int xor_init(void *vpxorctx, void *vkey, in xor_init() argument 247 if (pxorctx == NULL || vkey == NULL) in xor_init() 249 pxorctx->key = vkey; in xor_init() 464 static int xor_has(const void *vkey, int selection) in xor_has() argument 466 const XORKEY *key = vkey; in xor_has() 513 static ossl_inline int xor_get_params(void *vkey, OSSL_PARAM params[]) in xor_get_params() argument 515 XORKEY *key = vkey; in xor_get_params() 550 static int xor_set_params(void *vkey, const OSSL_PARAM params[]) in xor_set_params() argument 552 XORKEY *key = vkey; in xor_set_params() 660 XORKEY *key = vkey; in xor_import() [all …]
|
/openssl-master/providers/implementations/asymciphers/ |
A D | sm2_enc.c | 59 static int sm2_init(void *vpsm2ctx, void *vkey, const OSSL_PARAM params[]) in sm2_init() argument 63 if (psm2ctx == NULL || vkey == NULL || !EC_KEY_up_ref(vkey)) in sm2_init() 66 psm2ctx->key = vkey; in sm2_init()
|
/openssl-master/providers/implementations/signature/ |
A D | mac_legacy_sig.c | 98 static int mac_digest_sign_init(void *vpmacctx, const char *mdname, void *vkey, in mac_digest_sign_init() argument 108 if (pmacctx->key == NULL && vkey == NULL) { in mac_digest_sign_init() 113 if (vkey != NULL) { in mac_digest_sign_init() 114 if (!ossl_mac_key_up_ref(vkey)) in mac_digest_sign_init() 117 pmacctx->key = vkey; in mac_digest_sign_init()
|
/openssl-master/providers/implementations/exchange/ |
A D | ecx_exch.c | 72 static int ecx_init(void *vecxctx, void *vkey, in ecx_init() argument 76 ECX_KEY *key = vkey; in ecx_init() 95 static int ecx_set_peer(void *vecxctx, void *vkey) in ecx_set_peer() argument 98 ECX_KEY *key = vkey; in ecx_set_peer()
|
Completed in 8 milliseconds