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

  /system/vold/
cryptfs.c 920 static unsigned char* convert_hex_ascii_to_key(const char* master_key_ascii,
926 size_t size = strlen (master_key_ascii);
939 int high_nibble = hexdigit (master_key_ascii[i]);
940 int low_nibble = hexdigit (master_key_ascii[i + 1]);
959 char *master_key_ascii)
967 master_key_ascii[a] = nibble + (nibble > 9 ? 0x37 : 0x30);
970 master_key_ascii[a+1] = nibble + (nibble > 9 ? 0x37 : 0x30);
974 master_key_ascii[a] = '\0';
986 char master_key_ascii[129]; /* Large enough to hold 512 bit key and null */ local
1011 convert_key_to_hex_ascii(master_key, crypt_ftr->keysize, master_key_ascii);
1075 char master_key_ascii[129]; \/* Large enough to hold 512 bit key and null *\/ local
    [all...]

Completed in 3137 milliseconds