Example #1
0
 public void EncryptKVS(string key, string value)
 {
     WriteKVS(HashSomething(Password, key), SjclCompat.Encrypt(Password, value));
 }
Example #2
0
 public string DecryptKVS(string key)
 {
     return SjclCompat.Decrypt(Password, UnquoteString(ReadKVS(HashSomething(Password, key))));
 }