Lines Matching defs:ecxkey
378 static int set_property_query(ECX_KEY *ecxkey, const char *propq)
380 OPENSSL_free(ecxkey->propq);
381 ecxkey->propq = NULL;
383 ecxkey->propq = OPENSSL_strdup(propq);
384 if (ecxkey->propq == NULL) {
394 ECX_KEY *ecxkey = key;
402 void *buf = ecxkey->pubkey;
404 if (p->data_size != ecxkey->keylen
405 || !OSSL_PARAM_get_octet_string(p, &buf, sizeof(ecxkey->pubkey),
408 OPENSSL_clear_free(ecxkey->privkey, ecxkey->keylen);
409 ecxkey->privkey = NULL;
410 ecxkey->haspubkey = 1;
415 || !set_property_query(ecxkey, p->data))