Home
last modified time | relevance | path

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

/AOO42X/main/oox/source/core/
H A Dencryption.cxx257 EVP_CIPHER_CTX *aes_ctx; in checkEncryptionData() local
258 aes_ctx = EVP_CIPHER_CTX_new(); in checkEncryptionData()
259 if ( aes_ctx == NULL ) in checkEncryptionData()
261 EVP_DecryptInit_ex( aes_ctx, EVP_aes_128_ecb(), 0, pnKey, 0 ); in checkEncryptionData()
262 EVP_CIPHER_CTX_set_padding( aes_ctx, 0 ); in checkEncryptionData()
267 /*int*/ EVP_DecryptUpdate( aes_ctx, pnTmpVerifier, &nOutLen, pnVerifier, nVerifierSize ); in checkEncryptionData()
268 EVP_CIPHER_CTX_free( aes_ctx ); in checkEncryptionData()
270 aes_ctx = EVP_CIPHER_CTX_new(); in checkEncryptionData()
271 if ( aes_ctx == NULL ) in checkEncryptionData()
273 EVP_DecryptInit_ex( aes_ctx, EVP_aes_128_ecb(), 0, pnKey, 0 ); in checkEncryptionData()
[all …]