1
0
mirror of https://github.com/bitwarden/server.git synced 2025-06-12 22:10:50 -05:00

Address feedback

This commit is contained in:
Bernd Schoolmann 2025-06-04 11:59:53 +02:00
parent 7869b2f8e0
commit 9e0cdf3383
No known key found for this signature in database

View File

@ -1,11 +1,12 @@
#nullable enable #nullable enable
using Bit.Core.Enums; using Bit.Core.Enums;
namespace Bit.Core.KeyManagement.Models.Data; namespace Bit.Core.KeyManagement.Models.Data;
public class SignatureKeyPairData public class SignatureKeyPairData
{ {
required public SignatureAlgorithm SignatureAlgorithm { get; set; } public required SignatureAlgorithm SignatureAlgorithm { get; set; }
required public string WrappedSigningKey { get; set; } public required string WrappedSigningKey { get; set; }
required public string VerifyingKey { get; set; } public required string VerifyingKey { get; set; }
} }