[ADD] Implementing services/handlers
This commit is contained in:
7
DotBased.AspNet.Authority/Crypto/ICryptographer.cs
Normal file
7
DotBased.AspNet.Authority/Crypto/ICryptographer.cs
Normal file
@@ -0,0 +1,7 @@
|
||||
namespace DotBased.AspNet.Authority.Crypto;
|
||||
|
||||
public interface ICryptographer
|
||||
{
|
||||
public Task<string?> EncryptAsync(string data);
|
||||
public Task<string?> DecryptAsync(string data);
|
||||
}
|
Reference in New Issue
Block a user