mirror of
https://github.com/mRemoteNG/mRemoteNG.git
synced 2026-02-25 19:38:37 +08:00
12 lines
308 B
C#
12 lines
308 B
C#
using mRemoteNG.Security.SymmetricEncryption;
|
|
|
|
namespace mRemoteNG.Security.Factories
|
|
{
|
|
public class LegacyInsecureCryptoProviderFactory : ICryptoProviderFactory
|
|
{
|
|
public ICryptographyProvider Build()
|
|
{
|
|
return new LegacyRijndaelCryptographyProvider();
|
|
}
|
|
}
|
|
} |