Searched refs:key_blob (Results 1 – 6 of 6) sorted by relevance
/external/vboot_reference/firmware/lib/cryptolib/ |
D | rsa_utility.c | 83 int RSAVerifyBinary_f(const uint8_t* key_blob, in RSAVerifyBinary_f() argument 101 if (key_blob && !key) in RSAVerifyBinary_f() 102 verification_key = RSAPublicKeyFromBuf(key_blob, key_size); in RSAVerifyBinary_f() 103 else if (!key_blob && key) in RSAVerifyBinary_f() 124 int RSAVerifyBinaryWithDigest_f(const uint8_t* key_blob, in RSAVerifyBinaryWithDigest_f() argument 140 if (key_blob && !key) in RSAVerifyBinaryWithDigest_f() 141 verification_key = RSAPublicKeyFromBuf(key_blob, key_size); in RSAVerifyBinaryWithDigest_f() 142 else if (!key_blob && key) in RSAVerifyBinaryWithDigest_f()
|
/external/vboot_reference/utility/ |
D | load_kernel_test.c | 84 uint8_t* key_blob = NULL; in main() local 150 key_blob = ReadFile(argv[optind+1], &key_size); in main() 151 if (!key_blob) { in main() 169 if (key_blob) { in main() 172 Memcpy((uint8_t*)gbb + gbb->rootkey_offset, key_blob, key_size); in main() 187 if (key_blob) { in main() 188 if (0 != VbSharedDataSetKernelKey(shared, (VbPublicKey*)key_blob)) { in main() 195 free(key_blob); in main()
|
/external/vboot_reference/firmware/lib/cryptolib/include/ |
D | rsa.h | 55 int RSAVerifyBinary_f(const uint8_t* key_blob, 64 int RSAVerifyBinaryWithDigest_f(const uint8_t* key_blob,
|
/external/openssh/ |
D | PROTOCOL.agent | 340 string key_blob 342 Where "key_blob" is encoded as per RFC 4253 section 6.6 "Public Key 408 string key_blob 411 Where "key_blob" is encoded as per RFC 4253 section 6.6 "Public Key 471 string key_blob 475 Where "key_blob" is encoded as per RFC 4253 section 6.6 "Public Key 483 corresponds to the public key contained in key_blob. It will use this 500 If the agent cannot find the key specified by the supplied key_blob then
|
D | monitor.c | 172 static u_char *key_blob = NULL; variable 538 if (key_blob == NULL || key_bloblen != bloblen || in monitor_allowed_key() 539 timingsafe_bcmp(key_blob, blob, key_bloblen)) in monitor_allowed_key() 548 free(key_blob); in monitor_reset_key_state() 551 key_blob = NULL; in monitor_reset_key_state() 1194 key_blob = blob; in mm_answer_keyallowed()
|
/external/avb/ |
D | avbtool | 2145 key_blob = None 2148 key_blob = encode_rsa_key(key_path) 2167 if key_blob: 2173 if key_blob != key_blob_in_vbmeta:
|