OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:key_len_bytes
(Results
1 - 2
of
2
) sorted by null
/bootable/recovery/
verifier.cpp
387
uint32_t
key_len_bytes
= 0;
local
388
if (fscanf(file, " %i", &
key_len_bytes
) != 1) {
399
if (
key_len_bytes
!= BN_num_bytes(EC_GROUP_get0_order(group.get()))) {
405
std::unique_ptr<uint8_t[]> bytes(new uint8_t[
key_len_bytes
]);
412
bytes[
key_len_bytes
- 1] = byte;
414
for (size_t i = 1; i <
key_len_bytes
; ++i) {
418
bytes[
key_len_bytes
- i - 1] = byte;
421
point[i].reset(BN_bin2bn(bytes.get(),
key_len_bytes
, nullptr));
/system/vold/
cryptfs.c
80
#define
KEY_LEN_BYTES
16
106
static unsigned char saved_master_key[
KEY_LEN_BYTES
];
[
all
...]
Completed in 361 milliseconds