Lines Matching refs:hex_encoded_iv
173 char **hex_encoded_iv) in datablob_parse() argument
242 *hex_encoded_iv = strsep(&datablob, " \t"); in datablob_parse()
243 if (!*hex_encoded_iv) { in datablob_parse()
668 const char *format, const char *hex_encoded_iv) in encrypted_key_decrypt() argument
682 if (strlen(hex_encoded_iv) != asciilen) in encrypted_key_decrypt()
685 hex_encoded_data = hex_encoded_iv + (2 * ivsize) + 2; in encrypted_key_decrypt()
686 ret = hex2bin(epayload->iv, hex_encoded_iv, ivsize); in encrypted_key_decrypt()
761 const char *hex_encoded_iv) in encrypted_init() argument
775 if (!hex_encoded_iv) { in encrypted_init()
781 ret = encrypted_key_decrypt(epayload, format, hex_encoded_iv); in encrypted_init()
801 char *hex_encoded_iv = NULL; in encrypted_instantiate() local
814 &decrypted_datalen, &hex_encoded_iv); in encrypted_instantiate()
825 decrypted_datalen, hex_encoded_iv); in encrypted_instantiate()