IdentityShroud/IdentityShroud.Core/Security/EncryptedValue.cs
eelke 1a8c63808a Switch Owned value types to ComplexProperty which is better fit.
This requires fluent configuration. Also made some conversion registration context wide.
2026-02-28 08:18:30 +01:00

7 lines
138 B
C#

using Microsoft.EntityFrameworkCore;
namespace IdentityShroud.Core.Security;
public record EncryptedValue(DekId DekId, byte[] Value);