Lines Matching refs:ciphertext
1244 …HASHCRYPT_Type *base, hashcrypt_handle_t *handle, const uint8_t *plaintext, uint8_t *ciphertext, s… in HASHCRYPT_AES_EncryptEcb() argument
1277 status = hashcrypt_aes_one_block(base, plaintext, ciphertext, size); in HASHCRYPT_AES_EncryptEcb()
1285 …HASHCRYPT_Type *base, hashcrypt_handle_t *handle, const uint8_t *ciphertext, uint8_t *plaintext, s… in HASHCRYPT_AES_DecryptEcb() argument
1318 status = hashcrypt_aes_one_block(base, ciphertext, plaintext, size); in HASHCRYPT_AES_DecryptEcb()
1328 uint8_t *ciphertext, in HASHCRYPT_AES_EncryptCbc() argument
1366 status = hashcrypt_aes_one_block(base, plaintext, ciphertext, size); in HASHCRYPT_AES_EncryptCbc()
1375 const uint8_t *ciphertext, in HASHCRYPT_AES_DecryptCbc() argument
1414 status = hashcrypt_aes_one_block(base, ciphertext, plaintext, size); in HASHCRYPT_AES_DecryptCbc()
1620 uint8_t *ciphertext, in HASHCRYPT_AES_EncryptCfb() argument
1673 ciphertext[i] = plaintext[i] ^ blockOutput[i]; in HASHCRYPT_AES_EncryptCfb()
1681 ciphertext += 16; in HASHCRYPT_AES_EncryptCfb()
1692 ciphertext[i] = plaintext[i] ^ blockOutput[i]; in HASHCRYPT_AES_EncryptCfb()
1704 const uint8_t *ciphertext, in HASHCRYPT_AES_DecryptCfb() argument
1758 plaintext[i] = ciphertext[i] ^ blockOutput[i]; in HASHCRYPT_AES_DecryptCfb()
1766 ciphertext += 16; in HASHCRYPT_AES_DecryptCfb()
1777 plaintext[i] = ciphertext[i] ^ blockOutput[i]; in HASHCRYPT_AES_DecryptCfb()