namespace DotBased.AspNet.Authority.Crypto; public class Cryptographer : ICryptographer { public Task EncryptAsync(string data) { throw new NotImplementedException(); } public Task DecryptAsync(string data) { throw new NotImplementedException(); } }