Lines Matching refs:data_key
15 VbKeyBlockHeader* KeyBlockCreate(const VbPublicKey* data_key, in KeyBlockCreate() argument
20 uint64_t signed_size = sizeof(VbKeyBlockHeader) + data_key->key_size; in KeyBlockCreate()
34 block_chk_dest = data_key_dest + data_key->key_size; in KeyBlockCreate()
44 PublicKeyInit(&h->data_key, data_key_dest, data_key->key_size); in KeyBlockCreate()
45 PublicKeyCopy(&h->data_key, data_key); in KeyBlockCreate()
75 VbKeyBlockHeader* KeyBlockCreate_external(const VbPublicKey* data_key, in KeyBlockCreate_external() argument
81 uint64_t signed_size = sizeof(VbKeyBlockHeader) + data_key->key_size; in KeyBlockCreate_external()
93 if (!signing_key_pem_file || !data_key || !external_signer) in KeyBlockCreate_external()
97 block_chk_dest = data_key_dest + data_key->key_size; in KeyBlockCreate_external()
107 PublicKeyInit(&h->data_key, data_key_dest, data_key->key_size); in KeyBlockCreate_external()
108 PublicKeyCopy(&h->data_key, data_key); in KeyBlockCreate_external()