Home
last modified time | relevance | path

Searched refs:CRYPT_aes_context (Results 1 – 5 of 5) sorted by relevance

/external/pdfium/core/fdrm/
Dfx_crypt_aes.cpp447 void aes_encrypt_nb_4(CRYPT_aes_context* ctx, unsigned int* block) { in aes_encrypt_nb_4()
488 void aes_decrypt_nb_4(CRYPT_aes_context* ctx, unsigned int* block) { in aes_decrypt_nb_4()
518 void aes_setup(CRYPT_aes_context* ctx, const unsigned char* key, int keylen) { in aes_setup()
574 void aes_decrypt(CRYPT_aes_context* ctx, unsigned int* block) { in aes_decrypt()
581 CRYPT_aes_context* ctx) { in aes_decrypt_cbc()
602 void aes_encrypt(CRYPT_aes_context* ctx, unsigned int* block) { in aes_encrypt()
609 CRYPT_aes_context* ctx) { in aes_encrypt_cbc()
631 void CRYPT_AESSetKey(CRYPT_aes_context* context, in CRYPT_AESSetKey()
638 void CRYPT_AESSetIV(CRYPT_aes_context* context, const uint8_t* iv) { in CRYPT_AESSetIV()
643 void CRYPT_AESDecrypt(CRYPT_aes_context* context, in CRYPT_AESDecrypt()
[all …]
Dfx_crypt.h22 struct CRYPT_aes_context { struct
55 void CRYPT_AESSetKey(CRYPT_aes_context* context,
59 void CRYPT_AESSetIV(CRYPT_aes_context* context, const uint8_t* iv);
60 void CRYPT_AESDecrypt(CRYPT_aes_context* context,
64 void CRYPT_AESEncrypt(CRYPT_aes_context* context,
/external/pdfium/core/fpdfapi/parser/
Dcpdf_crypto_handler.h65 std::unique_ptr<CRYPT_aes_context, FxFreeDeleter> m_pAESContext;
Dcpdf_security_handler.cpp130 CRYPT_aes_context aes = {}; in Revision6_Hash()
364 CRYPT_aes_context aes = {}; in AES256_CheckPassword()
679 CRYPT_aes_context aes = {}; in AES256_SetPassword()
708 CRYPT_aes_context aes = {}; in AES256_SetPerms()
Dcpdf_crypto_handler.cpp106 CRYPT_aes_context m_Context;
393 m_pAESContext.reset(FX_Alloc(CRYPT_aes_context, 1)); in CPDF_CryptoHandler()