9 lines
267 B
C#
9 lines
267 B
C#
|
namespace Obfuz.Encryption
|
|||
|
{
|
|||
|
public abstract class EncryptInstructionBase : IEncryptInstruction
|
|||
|
{
|
|||
|
public abstract int Encrypt(int value, int[] secretKey, int salt);
|
|||
|
public abstract int Decrypt(int value, int[] secretKey, int salt);
|
|||
|
}
|
|||
|
}
|