From e542f605ac709ee497dbf7e6aedf97837bf8af8c Mon Sep 17 00:00:00 2001 From: Niko PLP Date: Wed, 16 Aug 2023 08:44:31 +0300 Subject: [PATCH] Revert "trying with memcpy in openssl" This reverts commit 62d62a9d12ffc345f9d033ecfd8e87b6745b4f02. --- plugin/openssl/openssl_provider.cc | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/plugin/openssl/openssl_provider.cc b/plugin/openssl/openssl_provider.cc index 02ebb0519..0e7537904 100644 --- a/plugin/openssl/openssl_provider.cc +++ b/plugin/openssl/openssl_provider.cc @@ -191,28 +191,28 @@ Status OpensslCipherStream::Encrypt(uint64_t fileOffset, char* data, EVP_CIPHER_CTX_set_padding(ctx_, 0); if (offset == 0) { - unsigned char *out = (unsigned char*)malloc(dataSize); - if( 1 != EVP_EncryptUpdate(ctx_, out, &len, reinterpret_cast(data), static_cast(dataSize))) {err_str="Failed to encrypt."; goto error;} - memcpy(data, out, dataSize); + //unsigned char *out = (unsigned char*)malloc(dataSize); + if( 1 != EVP_EncryptUpdate(ctx_, reinterpret_cast(data), &len, reinterpret_cast(data), static_cast(dataSize))) {err_str="Failed to encrypt."; goto error;} + //memcpy(data, out, dataSize); //EVP_EncryptFinal_ex(ctx_, reinterpret_cast(data) + len, &len); } else { unsigned char zero_block[kBlockSize]{0}; - unsigned char zero_block_out[kBlockSize]{0}; - if( 1 != EVP_EncryptUpdate(ctx_, zero_block_out, &len, zero_block, static_cast(kBlockSize))) {err_str="Failed to encrypt zero block."; goto error;} + //unsigned char zero_block_out[kBlockSize]{0}; + if( 1 != EVP_EncryptUpdate(ctx_, zero_block, &len, zero_block, static_cast(kBlockSize))) {err_str="Failed to encrypt zero block."; goto error;} //unsigned char * end = reinterpret_cast(zero_block) + len; size_t n = std::min(kBlockSize - offset, dataSize); - for (size_t i = 0; i < n; ++i) data[i] ^= zero_block_out[offset + i]; - //memset(zero_block, 0, kBlockSize); + for (size_t i = 0; i < n; ++i) data[i] ^= zero_block[offset + i]; + memset(zero_block, 0, kBlockSize); n = kBlockSize - offset; if (dataSize > n) { char* ptr = (char*)(data + n); - unsigned char *out = (unsigned char*)malloc(dataSize - n); - if( 1 != EVP_EncryptUpdate(ctx_, out, &len, reinterpret_cast(ptr), static_cast(dataSize - n))) {err_str="Failed to encrypt remaining."; goto error;} - memcpy(ptr, out, dataSize - n); + //unsigned char *out = (unsigned char*)malloc(dataSize - n); + if( 1 != EVP_EncryptUpdate(ctx_, reinterpret_cast(ptr), &len, reinterpret_cast(ptr), static_cast(dataSize - n))) {err_str="Failed to encrypt remaining."; goto error;} + //memcpy(ptr, out, dataSize - n); //end = reinterpret_cast(ptr) + len; }