OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:exported_size
(Results
1 - 2
of
2
) sorted by null
/system/core/trusty/keymaster/
trusty_keymaster_device_test.cpp
514
size_t
exported_size
;
local
515
EXPECT_EQ(KM_ERROR_OK, device.get_keypair_public(ptr, size, &exported, &
exported_size
));
530
VerifySignature(exported,
exported_size
, signature, siglen, message.get(), message_len);
543
size_t
exported_size
;
local
544
EXPECT_EQ(KM_ERROR_OK, device.get_keypair_public(key, size, &exported, &
exported_size
));
558
VerifySignature(exported,
exported_size
, signature, siglen, message, array_size(message) - 1);
trusty_keymaster_main.cpp
199
size_t
exported_size
;
local
200
error = device->get_keypair_public(key, size, &exported_key, &
exported_size
);
208
UniquePtr<EVP_PKEY, EVP_PKEY_Delete> pkey(d2i_PUBKEY(NULL, &tmp,
exported_size
));
315
size_t
exported_size
;
local
316
error = device->get_keypair_public(key, size, &exported_key, &
exported_size
);
324
UniquePtr<EVP_PKEY, EVP_PKEY_Delete> pkey(d2i_PUBKEY(NULL, &tmp,
exported_size
));
Completed in 176 milliseconds