Home
last modified time | relevance | path

Searched refs:ecxkey (Results 1 – 3 of 3) sorted by relevance

/openssl-master/providers/implementations/keymgmt/
A Decx_kmgmt.c363 OPENSSL_free(ecxkey->propq); in set_property_query()
364 ecxkey->propq = NULL; in set_property_query()
366 ecxkey->propq = OPENSSL_strdup(propq); in set_property_query()
367 if (ecxkey->propq == NULL) { in set_property_query()
377 ECX_KEY *ecxkey = key; in ecx_set_params() local
385 void *buf = ecxkey->pubkey; in ecx_set_params()
387 if (p->data_size != ecxkey->keylen in ecx_set_params()
391 OPENSSL_clear_free(ecxkey->privkey, ecxkey->keylen); in ecx_set_params()
392 ecxkey->privkey = NULL; in ecx_set_params()
393 ecxkey->haspubkey = 1; in ecx_set_params()
[all …]
/openssl-master/crypto/ec/
A Decx_meth.c33 const ECX_KEY *ecxkey = pkey->pkey.ecx; in ecx_pub_encode() local
36 if (ecxkey == NULL) { in ecx_pub_encode()
102 const ECX_KEY *ecxkey = pkey->pkey.ecx; in ecx_priv_encode() local
107 if (ecxkey == NULL || ecxkey->privkey == NULL) { in ecx_priv_encode()
112 oct.data = ecxkey->privkey; in ecx_priv_encode()
171 const ECX_KEY *ecxkey = pkey->pkey.ecx; in ecx_key_print() local
175 if (ecxkey == NULL || ecxkey->privkey == NULL) { in ecx_key_print()
188 if (ecxkey == NULL) { in ecx_key_print()
729 const ECX_KEY *ecxkey, *peerkey; in validate_ecx_derive() local
737 if (ecxkey == NULL || ecxkey->privkey == NULL) { in validate_ecx_derive()
[all …]
/openssl-master/providers/implementations/encode_decode/
A Dencode_key2any.c756 const ECX_KEY *ecxkey = vecxkey; in ecx_spki_pub_to_der() local
759 if (ecxkey == NULL) { in ecx_spki_pub_to_der()
764 keyblob = OPENSSL_memdup(ecxkey->pubkey, ecxkey->keylen); in ecx_spki_pub_to_der()
771 return ecxkey->keylen; in ecx_spki_pub_to_der()
776 const ECX_KEY *ecxkey = vecxkey; in ecx_pki_priv_to_der() local
780 if (ecxkey == NULL || ecxkey->privkey == NULL) { in ecx_pki_priv_to_der()
785 oct.data = ecxkey->privkey; in ecx_pki_priv_to_der()
786 oct.length = ecxkey->keylen; in ecx_pki_priv_to_der()

Completed in 12 milliseconds