Home | History | Annotate | Download | only in vold

Lines Matching full:master_key_ascii

914 static unsigned char* convert_hex_ascii_to_key(const char* master_key_ascii,
920 size_t size = strlen (master_key_ascii);
933 int high_nibble = hexdigit (master_key_ascii[i]);
934 int low_nibble = hexdigit (master_key_ascii[i + 1]);
953 char *master_key_ascii)
961 master_key_ascii[a] = nibble + (nibble > 9 ? 0x37 : 0x30);
964 master_key_ascii[a+1] = nibble + (nibble > 9 ? 0x37 : 0x30);
968 master_key_ascii[a] = '\0';
980 char master_key_ascii[129]; /* Large enough to hold 512 bit key and null */
996 convert_key_to_hex_ascii(master_key, crypt_ftr->keysize, master_key_ascii);
998 master_key_ascii, real_blk_name, extra_params);
1056 char master_key_ascii[129]; /* Large enough to hold 512 bit key and null */