LMS.service/LMS.Repository/RSAKey/RSAKeyGenerateModel.cs

20 lines
408 B
C#
Raw Normal View History

2024-10-13 17:04:47 +08:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace LMS.Repository.RSAKey
{
public class RSAKeyGenerateModel
{
public string PublicKey { get; set; }
public string EncryptedPrivateKey { get; set; }
public string EncryptedKey { get; set; }
public string EncryptionIV { get; set; }
}
}