Lines Matching full:iv
21 * In AES-CFB, the AES encryption operates on known 'plaintext' (the IV in aescfb_encrypt_block()
40 * @iv: The initialization vector (IV) to use for this block of data
43 int len, const u8 iv[AES_BLOCK_SIZE]) in aescfb_encrypt()
46 const u8 *v = iv; in aescfb_encrypt()
69 * @iv: The initialization vector (IV) to use for this block of data
72 int len, const u8 iv[AES_BLOCK_SIZE]) in aescfb_decrypt()
76 aescfb_encrypt_block(ctx, ks[0], iv); in aescfb_decrypt()
113 u8 iv[AES_BLOCK_SIZE]; member
122 .iv = "\x00\x01\x02\x03\x04\x05\x06\x07"
146 .iv = "\x00\x01\x02\x03\x04\x05\x06\x07"
171 .iv = "\x00\x01\x02\x03\x04\x05\x06\x07"
194 .iv = "\x00\x01\x02\x03\x04\x05\x06\x07"
207 .iv = "\x00\x01\x02\x03\x04\x05\x06\x07"
227 aescfb_tv[i].iv); in libaescfb_init()
234 aescfb_decrypt(&ctx, buf, buf, aescfb_tv[i].len, aescfb_tv[i].iv); in libaescfb_init()
241 aescfb_encrypt(&ctx, buf, buf, aescfb_tv[i].len, aescfb_tv[i].iv); in libaescfb_init()