15 lines
279 B
C#
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();
|
|
}
|
|
}
|