20 lines
404 B
C#
20 lines
404 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace LMS.Common.RSAKey
|
|
{
|
|
public class RSAKeyGenerateModel
|
|
{
|
|
public string PublicKey { get; set; }
|
|
|
|
public string EncryptedPrivateKey { get; set; }
|
|
|
|
public string EncryptedKey { get; set; }
|
|
|
|
public string EncryptionIV { get; set; }
|
|
}
|
|
}
|