使用Crypto ++,例如:
StreamTransformationFilter stfEncryptor(cbcEncryption, new StringSink( ciphertext ) );
stfEncryptor.Put( reinterpret_cast<const unsigned char*>( plaintext.c_str() ), plaintext.length() + 1 );
stfEncryptor.MessageEnd();
为什么使用new分配内存但没有空闲内存?它会导致内存泄漏吗?