Searched defs:cert (Results 1 - 2 of 2) sorted by relevance

/bootable/recovery/
H A Dverifier.cpp343 Certificate* cert = out + (*numKeys - 1); local
344 memset(cert, '\0', sizeof(Certificate));
350 cert->key_type = Certificate::RSA;
351 cert->rsa = (RSAPublicKey*)malloc(sizeof(RSAPublicKey));
352 cert->rsa->exponent = 3;
353 cert->hash_len = SHA_DIGEST_SIZE;
359 cert->key_type = Certificate::RSA;
360 cert->rsa = (RSAPublicKey*)malloc(sizeof(RSAPublicKey));
361 cert->rsa->exponent = 65537;
362 cert
[all...]
H A Dverifier_test.cpp184 Certificate* cert = &certs[num_keys - 1]; local
185 cert->hash_len = SHA256_DIGEST_SIZE;
188 Certificate* cert = add_certificate(&certs, &num_keys, Certificate::EC); local
189 cert->ec = &test_ec_key;
192 Certificate* cert = add_certificate(&certs, &num_keys, Certificate::RSA); local
193 cert->rsa = &test_key;
196 Certificate* cert = add_certificate(&certs, &num_keys, Certificate::RSA); local
197 cert->rsa = &test_f4_key;

Completed in 36 milliseconds