Searched refs:plaintext (Results 1 – 4 of 4) sorted by relevance
/linux-2.4.37.9/crypto/ |
D | tcrypt.h | 28 char plaintext[128]; member 40 char plaintext[128]; member 68 .plaintext = "", 72 .plaintext = "a", 77 .plaintext = "abc", 82 .plaintext = "message digest", 87 .plaintext = "abcdefghijklmnopqrstuvwxyz", 94 .plaintext = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789", 99 .plaintext = "123456789012345678901234567890123456789012345678901234567890123" 117 .plaintext = "a", [all …]
|
D | khazad.c | 821 u8 *ciphertext, const u8 *plaintext) in khazad_crypt() argument 827 state = ((u64)plaintext[0] << 56) ^ in khazad_crypt() 828 ((u64)plaintext[1] << 48) ^ in khazad_crypt() 829 ((u64)plaintext[2] << 40) ^ in khazad_crypt() 830 ((u64)plaintext[3] << 32) ^ in khazad_crypt() 831 ((u64)plaintext[4] << 24) ^ in khazad_crypt() 832 ((u64)plaintext[5] << 16) ^ in khazad_crypt() 833 ((u64)plaintext[6] << 8) ^ in khazad_crypt() 834 ((u64)plaintext[7] ) ^ in khazad_crypt()
|
D | anubis.c | 579 u8 *ciphertext, const u8 *plaintext, const int R) in anubis_crypt() argument 591 (plaintext[pos ] << 24) ^ in anubis_crypt() 592 (plaintext[pos + 1] << 16) ^ in anubis_crypt() 593 (plaintext[pos + 2] << 8) ^ in anubis_crypt() 594 (plaintext[pos + 3] ) ^ in anubis_crypt()
|
D | tcrypt.c | 112 p = hash_tv[i].plaintext; in test_hash() 146 memcpy (&xbuf[IDX[k]], hash_tv[i].plaintext + temp, in test_hash() 205 p = hmac_tv[i].plaintext; in test_hmac() 234 memcpy (&xbuf[IDX[k]], hmac_tv[i].plaintext + temp, in test_hmac()
|