Lines Matching defs:plaintext
403 void Camellia_EncryptBlock_Rounds(int grandRounds, const u8 plaintext[],
410 s0 = GETU32(plaintext) ^ k[0];
411 s1 = GETU32(plaintext + 4) ^ k[1];
412 s2 = GETU32(plaintext + 8) ^ k[2];
413 s3 = GETU32(plaintext + 12) ^ k[3];
449 void Camellia_EncryptBlock(int keyBitLength, const u8 plaintext[],
453 plaintext, keyTable, ciphertext);
458 u8 plaintext[])
496 PUTU32(plaintext, s2);
497 PUTU32(plaintext + 4, s3);
498 PUTU32(plaintext + 8, s0);
499 PUTU32(plaintext + 12, s1);
503 const KEY_TABLE_TYPE keyTable, u8 plaintext[])
506 ciphertext, keyTable, plaintext);