Exemplo n.º 1
0
 public SecureString GetKey(IKeyStoreKey key)
 {
     if (_credentials.ContainsKey(key))
     {
         return(_credentials[key]);
     }
     return(null);
 }
Exemplo n.º 2
0
 public bool DeleteKey(IKeyStoreKey key)
 {
     return(_credentials.Remove(key));
 }
Exemplo n.º 3
0
 public void SaveKey(IKeyStoreKey key, SecureString value)
 {
     _credentials[key] = value;
 }