6 lines
119 B
C#
6 lines
119 B
C#
namespace Toolkit.Foundation;
|
|
public interface IDecryptor
|
|
{
|
|
byte[] Decrypt(byte[] cipher,
|
|
byte[] key);
|
|
} |