mirror of
https://github.com/mRemoteNG/mRemoteNG.git
synced 2026-02-24 18:38:44 +08:00
10 lines
169 B
C#
10 lines
169 B
C#
using System.Security;
|
|
using mRemoteNG.Tools;
|
|
|
|
namespace mRemoteNG.Security
|
|
{
|
|
public interface IKeyProvider
|
|
{
|
|
Optional<SecureString> GetKey();
|
|
}
|
|
} |