Happy flow for creating realms works
But needs more validating...
This commit is contained in:
parent
f99c97f392
commit
92b34bd0b5
25 changed files with 437 additions and 12 deletions
7
IdentityShroud.Core/Contracts/IEncryptionService.cs
Normal file
7
IdentityShroud.Core/Contracts/IEncryptionService.cs
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
namespace IdentityShroud.Core.Contracts;
|
||||
|
||||
public interface IEncryptionService
|
||||
{
|
||||
byte[] Encrypt(byte[] plain);
|
||||
byte[] Decrypt(byte[] cipher);
|
||||
}
|
||||
|
|
@ -2,5 +2,5 @@ namespace IdentityShroud.Core.Contracts;
|
|||
|
||||
public interface ISecretProvider
|
||||
{
|
||||
Task<string> GetSecretAsync(string name);
|
||||
string GetSecretAsync(string name);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue