2026-02-21 20:15:46 +01:00
|
|
|
using IdentityShroud.Core.Contracts;
|
|
|
|
|
using IdentityShroud.Core.Messages;
|
|
|
|
|
using IdentityShroud.Core.Model;
|
|
|
|
|
using IdentityShroud.Core.Security.Keys;
|
|
|
|
|
|
|
|
|
|
namespace IdentityShroud.Core.Services;
|
|
|
|
|
|
|
|
|
|
public class KeyService(
|
2026-02-26 16:53:02 +01:00
|
|
|
IDekEncryptionService cryptor,
|
2026-02-21 20:15:46 +01:00
|
|
|
IKeyProviderFactory keyProviderFactory,
|
|
|
|
|
IClock clock) : IKeyService
|
|
|
|
|
{
|
|
|
|
|
public RealmKey CreateKey(KeyPolicy policy)
|
|
|
|
|
{
|
|
|
|
|
IKeyProvider provider = keyProviderFactory.CreateProvider(policy.KeyType);
|
|
|
|
|
var plainKey = provider.CreateKey(policy);
|
|
|
|
|
|
|
|
|
|
return CreateKey(policy.KeyType, plainKey);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public JsonWebKey? CreateJsonWebKey(RealmKey realmKey)
|
|
|
|
|
{
|
|
|
|
|
JsonWebKey jwk = new()
|
|
|
|
|
{
|
|
|
|
|
KeyId = realmKey.Id.ToString(),
|
|
|
|
|
KeyType = realmKey.KeyType,
|
|
|
|
|
Use = "sig",
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
IKeyProvider provider = keyProviderFactory.CreateProvider(realmKey.KeyType);
|
|
|
|
|
provider.SetJwkParameters(
|
2026-02-24 06:32:58 +01:00
|
|
|
cryptor.Decrypt(realmKey.Key),
|
2026-02-21 20:15:46 +01:00
|
|
|
jwk);
|
|
|
|
|
|
|
|
|
|
return jwk;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private RealmKey CreateKey(string keyType, byte[] plainKey) =>
|
2026-02-24 06:32:58 +01:00
|
|
|
new RealmKey()
|
|
|
|
|
{
|
|
|
|
|
Id = Guid.NewGuid(),
|
|
|
|
|
KeyType = keyType,
|
|
|
|
|
Key = cryptor.Encrypt(plainKey),
|
|
|
|
|
CreatedAt = clock.UtcNow(),
|
|
|
|
|
};
|
2026-02-21 20:15:46 +01:00
|
|
|
}
|