1
0
mirror of https://github.com/bitwarden/server.git synced 2025-06-20 02:48:03 -05:00

Remove unused file

This commit is contained in:
Bernd Schoolmann 2025-06-16 11:27:45 +02:00
parent b7079cefcf
commit 54aac8cfc4
No known key found for this signature in database

View File

@ -1,21 +0,0 @@
#nullable enable
using Bit.Core.KeyManagement.Models.Data;
using Bit.Core.Utilities;
namespace Bit.Api.KeyManagement.Models.Requests;
public class PrivateEncryptionKeyPairRequestModel
{
[EncryptedString] public required string WrappedPrivateKey { get; set; }
public required string PublicKey { get; set; }
public required string SignedPublicKey { get; set; }
public PublicKeyEncryptionKeyPairData ToPrivateKeyEncryptionKeyPairData()
{
return new PublicKeyEncryptionKeyPairData(
WrappedPrivateKey,
PublicKey,
SignedPublicKey
);
}
}