CASA/c_micasad/cache/ISecret.cs

15 lines
279 B
C#
Raw Normal View History

using System;
namespace sscs.cache
{
interface ISecret
{
//Setter methods
void SetValue(byte[] key);
void SetKey(String newkey);
//Get methods
byte[] GetValue(String key);
string GetKey();
}
}