Searched refs:numKeys (Results 1 – 3 of 3) sorted by relevance
/bootable/recovery/ |
D | install.c | 238 const RSAPublicKey *keys, int numKeys) in handle_update_package() argument 246 if (!verify_jar_signature(zip, keys, numKeys)) { in handle_update_package() 274 load_keys(const char* filename, int* numKeys) { in load_keys() argument 276 *numKeys = 0; in load_keys() 287 ++*numKeys; in load_keys() 288 out = realloc(out, *numKeys * sizeof(RSAPublicKey)); in load_keys() 289 RSAPublicKey* key = out + (*numKeys - 1); in load_keys() 329 *numKeys = 0; in load_keys() 355 int numKeys; in install_package() local 356 RSAPublicKey* loadedKeys = load_keys(PUBLIC_KEYS_FILE, &numKeys); in install_package() [all …]
|
D | verifier.h | 28 const RSAPublicKey *pKeys, int numKeys);
|
D | verifier.c | 106 const RSAPublicKey *pKeys, unsigned int numKeys) { in verifySignature() argument 146 for (j = 0; j < numKeys; ++j) { in verifySignature() 353 const RSAPublicKey *pKeys, int numKeys) { in verify_jar_signature() argument 354 const ZipEntry *sfEntry = verifySignature(pArchive, pKeys, numKeys); in verify_jar_signature()
|