Lines Matching refs:ec
268 } else if (pKeys[i].key_type == Certificate::EC
272 LOGI("Not a DSA signature block for EC key %zu\n", i);
278 if (!p256_ecdsa_verify(&(pKeys[i].ec->x), &(pKeys[i].ec->y),
280 LOGI("failed to verify against EC key %zu\n", i);
284 LOGI("whole-file signature verified against EC key %zu\n", i);
323 // 5: 256-bit EC key using the NIST P-256 curve parameters and SHA-256 hash
377 cert->key_type = Certificate::EC;
378 cert->ec = (ECPublicKey*)calloc(1, sizeof(ECPublicKey));
406 } else if (cert->key_type == Certificate::EC) {
407 ECPublicKey* key = cert->ec;