Lines Matching defs:ciphertext
405 u8 ciphertext[])
443 PUTU32(ciphertext, s2);
444 PUTU32(ciphertext + 4, s3);
445 PUTU32(ciphertext + 8, s0);
446 PUTU32(ciphertext + 12, s1);
450 const KEY_TABLE_TYPE keyTable, u8 ciphertext[])
453 plaintext, keyTable, ciphertext);
456 void Camellia_DecryptBlock_Rounds(int grandRounds, const u8 ciphertext[],
463 s0 = GETU32(ciphertext) ^ k[0];
464 s1 = GETU32(ciphertext + 4) ^ k[1];
465 s2 = GETU32(ciphertext + 8) ^ k[2];
466 s3 = GETU32(ciphertext + 12) ^ k[3];
502 void Camellia_DecryptBlock(int keyBitLength, const u8 ciphertext[],
506 ciphertext, keyTable, plaintext);