HomeSort by relevance Sort by last modified time
    Searched full:key_len_words (Results 1 - 1 of 1) sorted by null

  /bootable/recovery/
verifier.cpp 318 uint32_t key_len_words = 0; local
320 if (fscanf(file, " %i , 0x%x", &key_len_words, &n0inv) != 2) {
324 if (key_len_words > 8192 / 32) {
325 LOGE("key length (%d) too large\n", key_len_words);
330 std::unique_ptr<uint32_t[]> modulus(new uint32_t[key_len_words]);
334 for (uint32_t i = 1; i < key_len_words; ++i) {
343 (uint8_t*)(modulus.get() + key_len_words));
351 for (uint32_t i = 1; i < key_len_words; ++i) {
367 key_len_words * sizeof(uint32_t), NULL);

Completed in 176 milliseconds