Lines Matching defs:tmp
150 uint8_t tmp[16], iv[8];
158 test_blowfish(ctx, tmp, plaintext, ciphertext, 1, NULL, 0, "encryption");
159 test_blowfish(ctx, tmp, ciphertext, plaintext, 1, NULL, 1, "decryption");
160 test_blowfish(ctx, tmp, tmp, ciphertext, 1, NULL, 0, "Inplace encryption");
161 test_blowfish(ctx, tmp, tmp, plaintext, 1, NULL, 1, "Inplace decryption");
163 test_blowfish(ctx, tmp, plaintext2, ciphertext2, 2, iv, 0, "CBC encryption");
165 test_blowfish(ctx, tmp, ciphertext2, plaintext2, 2, iv, 1, "CBC decryption");
167 test_blowfish(ctx, tmp, tmp, ciphertext2, 2, iv, 0, "Inplace CBC encryption");
169 test_blowfish(ctx, tmp, tmp, plaintext2, 2, iv, 1, "Inplace CBC decryption");