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:
parent
b7079cefcf
commit
54aac8cfc4
@ -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
|
|
||||||
);
|
|
||||||
}
|
|
||||||
}
|
|
Loading…
x
Reference in New Issue
Block a user