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