diff --git a/mRemoteV1/Security/AeadCryptographyProvider.cs b/mRemoteV1/Security/AeadCryptographyProvider.cs index 2c1483467..73fb435c3 100644 --- a/mRemoteV1/Security/AeadCryptographyProvider.cs +++ b/mRemoteV1/Security/AeadCryptographyProvider.cs @@ -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; }