Home
last modified time | relevance | path

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

/external/pdfium/core/fdrm/crypto/
Dfx_crypt.h21 struct CRYPT_aes_context { struct
22 void (*encrypt)(CRYPT_aes_context* ctx, unsigned int* block); argument
23 void (*decrypt)(CRYPT_aes_context* ctx, unsigned int* block); argument
62 void CRYPT_AESSetKey(CRYPT_aes_context* context,
67 void CRYPT_AESSetIV(CRYPT_aes_context* context, const uint8_t* iv);
68 void CRYPT_AESDecrypt(CRYPT_aes_context* context,
72 void CRYPT_AESEncrypt(CRYPT_aes_context* context,
Dfx_crypt_aes.cpp454 void aes_encrypt_nb_4(CRYPT_aes_context* ctx, unsigned int* block) { in aes_encrypt_nb_4()
482 void aes_encrypt_nb_6(CRYPT_aes_context* ctx, unsigned int* block) { in aes_encrypt_nb_6()
518 void aes_encrypt_nb_8(CRYPT_aes_context* ctx, unsigned int* block) { in aes_encrypt_nb_8()
574 void aes_decrypt_nb_4(CRYPT_aes_context* ctx, unsigned int* block) { in aes_decrypt_nb_4()
602 void aes_decrypt_nb_6(CRYPT_aes_context* ctx, unsigned int* block) { in aes_decrypt_nb_6()
638 void aes_decrypt_nb_8(CRYPT_aes_context* ctx, unsigned int* block) { in aes_decrypt_nb_8()
683 void aes_setup(CRYPT_aes_context* ctx, in aes_setup()
750 void aes_decrypt(CRYPT_aes_context* ctx, unsigned int* block) { in aes_decrypt()
756 CRYPT_aes_context* ctx) { in aes_decrypt_cbc()
777 void aes_encrypt(CRYPT_aes_context* ctx, unsigned int* block) { in aes_encrypt()
[all …]
/external/pdfium/core/fpdfapi/parser/
Dcpdf_security_handler.cpp252 CRYPT_aes_context aes; in Revision6_Hash()
356 CRYPT_aes_context aes; in AES256_CheckPassword()
667 CRYPT_aes_context aes; in AES256_SetPassword()
696 CRYPT_aes_context aes; in AES256_SetPerms()
Dcpdf_crypto_handler.h75 std::unique_ptr<CRYPT_aes_context, FxFreeDeleter> m_pAESContext;
Dcpdf_crypto_handler.cpp115 CRYPT_aes_context m_Context;
411 m_pAESContext.reset(FX_Alloc(CRYPT_aes_context, 1)); in CPDF_CryptoHandler()