From 5bc67ab796fc3a701dbc035eb53f22ce58cc3733 Mon Sep 17 00:00:00 2001 From: David Sparer Date: Mon, 11 Jul 2016 18:07:42 -0600 Subject: [PATCH] Changed default engine from AesFastEngine to AesEngine --- mRemoteV1/Security/AeadCryptographyProvider.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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; }