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(); } }