Home | History | Annotate | Download | only in ciphers

Lines Matching refs:ciphertext

1039 static void anubis_crypt(const unsigned char *plaintext, unsigned char *ciphertext,
1121 * map cipher state to ciphertext block (mu^{-1}):
1125 ciphertext[pos ] = (unsigned char)(w >> 24);
1126 ciphertext[pos + 1] = (unsigned char)(w >> 16);
1127 ciphertext[pos + 2] = (unsigned char)(w >> 8);
1128 ciphertext[pos + 3] = (unsigned char)(w );
1135 @param ct The output ciphertext (16 bytes)
1150 @param ct The input ciphertext (16 bytes)