Lines Matching refs:hex_encoded_iv
174 char **hex_encoded_iv, char **decrypted_data) in datablob_parse() argument
244 *hex_encoded_iv = strsep(&datablob, " \t"); in datablob_parse()
245 if (!*hex_encoded_iv) { in datablob_parse()
655 const char *format, const char *hex_encoded_iv) in encrypted_key_decrypt() argument
669 if (strlen(hex_encoded_iv) != asciilen) in encrypted_key_decrypt()
672 hex_encoded_data = hex_encoded_iv + (2 * ivsize) + 2; in encrypted_key_decrypt()
673 ret = hex2bin(epayload->iv, hex_encoded_iv, ivsize); in encrypted_key_decrypt()
749 const char *hex_encoded_iv, const char *decrypted_data) in encrypted_init() argument
763 if (hex_encoded_iv) { in encrypted_init()
764 ret = encrypted_key_decrypt(epayload, format, hex_encoded_iv); in encrypted_init()
794 char *hex_encoded_iv = NULL; in encrypted_instantiate() local
808 &decrypted_datalen, &hex_encoded_iv, &decrypted_data); in encrypted_instantiate()
819 decrypted_datalen, hex_encoded_iv, decrypted_data); in encrypted_instantiate()