This commit is contained in:
2024-10-13 17:04:47 +08:00
commit 2183073421
96 changed files with 7949 additions and 0 deletions
@@ -0,0 +1,19 @@
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; }
}
}