6 lines
141 B
C#
6 lines
141 B
C#
|
|
using Microsoft.EntityFrameworkCore;
|
||
|
|
|
||
|
|
namespace IdentityShroud.Core.Security;
|
||
|
|
|
||
|
|
[Owned]
|
||
|
|
public record EncryptedDek(KekId KekId, byte[] Value);
|