Home | History | Annotate | Download | only in ciphers

Lines Matching refs:plaintext

677 static void khazad_crypt(const unsigned char *plaintext, unsigned char *ciphertext,
682 * map plaintext block to cipher state (mu)
686 ((ulong64)plaintext[0] << 56) ^
687 ((ulong64)plaintext[1] << 48) ^
688 ((ulong64)plaintext[2] << 40) ^
689 ((ulong64)plaintext[3] << 32) ^
690 ((ulong64)plaintext[4] << 24) ^
691 ((ulong64)plaintext[5] << 16) ^
692 ((ulong64)plaintext[6] << 8) ^
693 ((ulong64)plaintext[7] ) ^
741 @param pt The input plaintext (8 bytes)
758 @param pt The output plaintext (8 bytes)