Files
mRemoteNG/mRemoteV1/Security/IHasKey.cs
David Sparer 8439d6d3aa lots of reworked interfaces around cred repo serialization
- decryptors now expose a property that represents what key they will use for decrypt. this can be used by decorators to properly encapsulate password prompts
- added some basic acceptance tests around cred repos
- added some stubby implementations for IDataProvider and the key provider decorators
2017-04-03 20:09:47 -06:00

9 lines
139 B
C#

using System.Security;
namespace mRemoteNG.Security
{
public interface IHasKey
{
SecureString Key { get; set; }
}
}