Files
Walleby/Bitvault/IDecryptor.cs
T
2024-04-29 21:42:04 +01:00

7 lines
125 B
C#

namespace Bitvault
{
public interface IDecryptor
{
string? Decrypt(string cipherText, byte[] key);
}
}