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

/freebsd-current/crypto/openssl/providers/implementations/keymgmt/
H A Decx_kmgmt.c381 static int set_property_query(ECX_KEY *ecxkey, const char *propq) argument
383 OPENSSL_free(ecxkey->propq);
384 ecxkey->propq = NULL;
386 ecxkey->propq = OPENSSL_strdup(propq);
387 if (ecxkey->propq == NULL) {
397 ECX_KEY *ecxkey = key; local
405 void *buf = ecxkey->pubkey;
407 if (p->data_size != ecxkey->keylen
408 || !OSSL_PARAM_get_octet_string(p, &buf, sizeof(ecxkey->pubkey),
411 OPENSSL_clear_free(ecxkey
[all...]
/freebsd-current/crypto/openssl/crypto/ec/
H A Decx_meth.c33 const ECX_KEY *ecxkey = pkey->pkey.ecx; local
36 if (ecxkey == NULL) {
41 penc = OPENSSL_memdup(ecxkey->pubkey, KEYLEN(pkey));
102 const ECX_KEY *ecxkey = pkey->pkey.ecx; local
107 if (ecxkey == NULL || ecxkey->privkey == NULL) {
112 oct.data = ecxkey->privkey;
171 const ECX_KEY *ecxkey = pkey->pkey.ecx; local
175 if (ecxkey == NULL || ecxkey
729 const ECX_KEY *ecxkey, *peerkey; local
[all...]
/freebsd-current/crypto/openssl/providers/implementations/encode_decode/
H A Dencode_key2any.c764 const ECX_KEY *ecxkey = vecxkey; local
767 if (ecxkey == NULL) {
772 keyblob = OPENSSL_memdup(ecxkey->pubkey, ecxkey->keylen);
779 return ecxkey->keylen;
784 const ECX_KEY *ecxkey = vecxkey; local
788 if (ecxkey == NULL || ecxkey->privkey == NULL) {
793 oct.data = ecxkey->privkey;
794 oct.length = ecxkey
[all...]

Completed in 109 milliseconds