mirror of
https://github.com/mRemoteNG/mRemoteNG.git
synced 2026-02-17 22:11:48 +08:00
Changed default engine from AesFastEngine to AesEngine
This commit is contained in:
@@ -41,13 +41,13 @@ namespace mRemoteNG.Security
|
||||
|
||||
public AeadCryptographyProvider()
|
||||
{
|
||||
_aeadBlockCipher = new GcmBlockCipher(new AesFastEngine());
|
||||
_aeadBlockCipher = new GcmBlockCipher(new AesEngine());
|
||||
_encoding = Encoding.UTF8;
|
||||
}
|
||||
|
||||
public AeadCryptographyProvider(Encoding encoding)
|
||||
{
|
||||
_aeadBlockCipher = new GcmBlockCipher(new AesFastEngine());
|
||||
_aeadBlockCipher = new GcmBlockCipher(new AesEngine());
|
||||
_encoding = encoding;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user