mirror of
https://github.com/hmaxnl/DotBased.git
synced 2025-01-18 18:14:20 +01:00
14 lines
309 B
C#
14 lines
309 B
C#
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();
|
|
}
|
|
} |