Home | History | Annotate | Download | only in ciphers

Lines Matching full:plaintext

1039 static void anubis_crypt(const unsigned char *plaintext, unsigned char *ciphertext,
1046 * map plaintext block to cipher state (mu)
1051 (plaintext[pos ] << 24) ^
1052 (plaintext[pos + 1] << 16) ^
1053 (plaintext[pos + 2] << 8) ^
1054 (plaintext[pos + 3] ) ^
1134 @param pt The input plaintext (16 bytes)
1151 @param pt The output plaintext (16 bytes)