SmKeyPairOutput.cs 497 B

123456789101112131415161718192021
  1. // 大名科技(天津)有限公司版权所有 电话:18020030720 QQ:515096995
  2. //
  3. // 此源代码遵循位于源代码树根目录中的 LICENSE 文件的许可证
  4. namespace Admin.NET.Core.Service;
  5. /// <summary>
  6. /// 国密公钥私钥对输出
  7. /// </summary>
  8. public class SmKeyPairOutput
  9. {
  10. /// <summary>
  11. /// 私匙
  12. /// </summary>
  13. public string PrivateKey { get; set; }
  14. /// <summary>
  15. /// 公匙
  16. /// </summary>
  17. public string PublicKey { get; set; }
  18. }