mirror of
https://github.com/mRemoteNG/mRemoteNG.git
synced 2026-02-26 03:58:45 +08:00
this will support the push towards constructor injection / decorators. this interface can act as a stand-in for what would otherwise be a static decryption key
9 lines
136 B
C#
9 lines
136 B
C#
using System.Security;
|
|
|
|
namespace mRemoteNG.Security
|
|
{
|
|
public interface IKeyProvider
|
|
{
|
|
SecureString GetKey();
|
|
}
|
|
} |