Lines Matching refs:IV
68 unsigned char IV[16];
239 * IV = MD( filesize || filename )[0..15]
265 memcpy(IV, digest, 16);
268 * Append the IV at the beginning of the output.
270 if (fwrite(IV, 1, 16, fout) != 16) {
276 * Hash the IV and the secret key together 8192 times
280 memcpy(digest, IV, 16);
313 if (mbedtls_cipher_set_iv(&cipher_ctx, IV, 16) != 0) {
418 * Subtract the IV + HMAC length.
423 * Read the IV and original filesize modulo 16.
430 memcpy(IV, buffer, 16);
433 * Hash the IV and the secret key together 8192 times
437 memcpy(digest, IV, 16);
466 if (mbedtls_cipher_set_iv(&cipher_ctx, IV, 16) != 0) {
566 mbedtls_platform_zeroize(IV, sizeof(IV));