CASA/c_micasad/cache/ISecret.cs
2005-10-11 19:51:00 +00:00

15 lines
279 B
C#

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