Home | History | Annotate | Download | only in ciphers

Lines Matching refs:ciphertext

677 static void khazad_crypt(const unsigned char *plaintext, unsigned char *ciphertext,
727 * map cipher state to ciphertext block (mu^{-1}):
729 ciphertext[0] = (unsigned char)(state >> 56);
730 ciphertext[1] = (unsigned char)(state >> 48);
731 ciphertext[2] = (unsigned char)(state >> 40);
732 ciphertext[3] = (unsigned char)(state >> 32);
733 ciphertext[4] = (unsigned char)(state >> 24);
734 ciphertext[5] = (unsigned char)(state >> 16);
735 ciphertext[6] = (unsigned char)(state >> 8);
736 ciphertext[7] = (unsigned char)(state );
742 @param ct The output ciphertext (8 bytes)
757 @param ct The input ciphertext (8 bytes)