Home | History | Annotate | Download | only in recovery

Lines Matching refs:Certificate

115                 const Certificate* pKeys, unsigned int numKeys) {
252 if (pKeys[i].key_type == Certificate::RSA) {
268 } else if (pKeys[i].key_type == Certificate::EC
315 // A Certificate is a pair of an RSAPublicKey and a particular hash
326 Certificate*
328 Certificate* out = NULL;
342 out = (Certificate*)realloc(out, *numKeys * sizeof(Certificate));
343 Certificate* cert = out + (*numKeys - 1);
344 memset(cert, '\0', sizeof(Certificate));
350 cert->key_type = Certificate::RSA;
359 cert->key_type = Certificate::RSA;
365 cert->key_type = Certificate::RSA;
371 cert->key_type = Certificate::RSA;
377 cert->key_type = Certificate::EC;
386 if (cert->key_type == Certificate::RSA) {
406 } else if (cert->key_type == Certificate::EC) {