/external/vboot_reference/tests/ |
D | vboot_common3_tests.c | 45 TEST_EQ(KeyBlockVerify(hdr, hsize, NULL, 1), 0, in KeyBlockVerifyTest() 47 TEST_EQ(KeyBlockVerify(hdr, hsize, public_key, 0), 0, in KeyBlockVerifyTest() 49 TEST_NEQ(KeyBlockVerify(hdr, hsize, NULL, 0), 0, in KeyBlockVerifyTest() 52 TEST_NEQ(KeyBlockVerify(hdr, hsize - 1, NULL, 1), 0, in KeyBlockVerifyTest() 54 TEST_EQ(KeyBlockVerify(hdr, hsize + 1, NULL, 1), 0, in KeyBlockVerifyTest() 59 TEST_NEQ(KeyBlockVerify(h, hsize, NULL, 1), 0, in KeyBlockVerifyTest() 66 TEST_NEQ(KeyBlockVerify(h, hsize, NULL, 1), 0, in KeyBlockVerifyTest() 72 TEST_NEQ(KeyBlockVerify(h, hsize, NULL, 1), 0, in KeyBlockVerifyTest() 78 TEST_EQ(KeyBlockVerify(h, hsize, NULL, 1), 0, in KeyBlockVerifyTest() 84 TEST_EQ(KeyBlockVerify(h, hsize, NULL, 1), 0, in KeyBlockVerifyTest() [all …]
|
D | vboot_firmware_tests.c | 106 int KeyBlockVerify(const VbKeyBlockHeader* block, uint64_t size, in KeyBlockVerify() function
|
D | vboot_kernel_tests.c | 239 int KeyBlockVerify(const VbKeyBlockHeader *block, uint64_t size, in KeyBlockVerify() function
|
/external/vboot_reference/futility/ |
D | cmd_show.c | 233 if (0 != KeyBlockVerify(block, state->my_area->len, NULL, 1)) { in futil_cb_show_keyblock() 240 KeyBlockVerify(block, state->my_area->len, sign_key, 0)) in futil_cb_show_keyblock() 288 if (VBOOT_SUCCESS != KeyBlockVerify(key_block, len, NULL, 1)) { in futil_cb_show_fw_preamble() 317 KeyBlockVerify(key_block, len, sign_key, 0)) in futil_cb_show_fw_preamble() 425 if (VBOOT_SUCCESS != KeyBlockVerify(key_block, len, NULL, 1)) { in futil_cb_show_kernel_preamble() 432 KeyBlockVerify(key_block, len, sign_key, 0)) in futil_cb_show_kernel_preamble()
|
D | cmd_vbutil_keyblock.c | 181 KeyBlockVerify(block, block->key_block_size, sign_key, 0)) { in Unpack()
|
D | cmd_vbutil_firmware.c | 217 if (0 != KeyBlockVerify(key_block, blob_size, sign_key, 0)) { in Verify()
|
D | vb1_helper.c | 502 if (0 != KeyBlockVerify(g_keyblock, g_keyblock->key_block_size, in VerifyKernelBlob() 726 if (VBOOT_SUCCESS == KeyBlockVerify(key_block, len, NULL, 1)) { in recognize_vblock1()
|
D | cmd_sign.c | 148 if (VBOOT_SUCCESS != KeyBlockVerify(key_block, len, NULL, 1)) { in futil_cb_sign_fw_vblock()
|
/external/vboot_reference/firmware/linktest/ |
D | main.c | 86 KeyBlockVerify(0, 0, 0, 0); in main()
|
/external/vboot_reference/firmware/lib/ |
D | vboot_kernel.c | 193 if (0 != KeyBlockVerify(key_block, KBUF_SIZE, in LoadKernel() 218 if (0 != KeyBlockVerify(key_block, KBUF_SIZE, in LoadKernel()
|
D | vboot_firmware.c | 136 if ((0 != KeyBlockVerify(key_block, vblock_size, in LoadFirmware()
|
D | vboot_common.c | 187 int KeyBlockVerify(const VbKeyBlockHeader *block, uint64_t size, in KeyBlockVerify() function
|
/external/vboot_reference/firmware/lib/include/ |
D | vboot_common.h | 121 int KeyBlockVerify(const VbKeyBlockHeader *block, uint64_t size,
|
/external/vboot_reference/host/lib/ |
D | host_keyblock.c | 149 if (0 != KeyBlockVerify(block, file_size, NULL, 1)) { in KeyBlockRead()
|