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