mirror of
https://github.com/hmaxnl/DotBased.git
synced 2025-02-23 23:25:00 +01:00
7 lines
184 B
C#
7 lines
184 B
C#
|
namespace DotBased.AspNet.Authority.Crypto;
|
||
|
|
||
|
public interface ICryptographer
|
||
|
{
|
||
|
public Task<string?> EncryptAsync(string data);
|
||
|
public Task<string?> DecryptAsync(string data);
|
||
|
}
|