IdentityShroud/IdentityShroud.Core/Security/EncryptionKey.cs

4 lines
183 B
C#
Raw Normal View History

namespace IdentityShroud.Core.Contracts;
// Contains an encryption key and associated relevant data
public record EncryptionKey(string Id, bool Active, string Algorithm, byte[] Key);