Searched refs:cipher_ctx (Results 1 – 1 of 1) sorted by relevance
| /trunk/main/oox/inc/oox/helper/ |
| H A D | openssl_wrapper.hxx | 110 cipher_ctx = EVP_CIPHER_CTX_new(); in OpenSSLCipher() 111 if( cipher_ctx == NULL ) in OpenSSLCipher() 117 EVP_CIPHER_CTX_free( cipher_ctx ); in ~OpenSSLCipher() 122 if( 1 != EVP_CipherInit_ex( cipher_ctx, aCipher, NULL, key, iv, enc ) ) in initialize() 129 if( 1 != EVP_CIPHER_CTX_set_padding( cipher_ctx, padding ) ) in setPadding() 135 if( 1 != EVP_CipherUpdate( cipher_ctx, dataOut, dataOutSize, dataIn, dataInSize ) ) in update() 141 if( 1 != EVP_CipherFinal( cipher_ctx, dataOut, dataOutSize ) ) in final() 154 EVP_CIPHER_CTX* cipher_ctx; member in oox::OpenSSLCipher
|