经验首页 前端设计 程序设计 Java相关 移动开发 数据库/运维 软件/图像 大数据/云计算 其他经验
当前位置:技术经验 » 数据库/运维 » Windows » 查看文章
【Azure App Service】.NET代码实验App Service应用中获取TLS/SSL 证书 (App Service Windows)
来源:cnblogs  作者:路边两盏灯  时间:2024/5/29 9:09:49  对本文有异议

在使用App Service服务部署业务应用,因为有些第三方的接口需要调用者携带TLS/SSL证书(X509 Certificate),在官方文档中介绍了两种方式在代码中使用证书:

1) 直接使用证书文件路径加载证书

2) 从系统的证书库中通过指纹加载证书

本文中,将分别通过代码来验证以上两种方式.

 

第一步:使用PowerShell创建自签名证书

参考文档 : 生成自签名证书概述  https://learn.microsoft.com/zh-cn/dotnet/core/additional-tools/self-signed-certificates-guide#with-powershell

  1. $cert = New-SelfSignedCertificate -DnsName @("mytest.com", "www.mytest.com") -CertStoreLocation "cert:\LocalMachine\My"
  2.  
  3. $certKeyPath = 'C:\MyWorkPlace\Tools\scerts\mytest.com.pfx'
  4. $password = ConvertTo-SecureString 'password' -AsPlainText -Force
  5. $cert | Export-PfxCertificate -FilePath $certKeyPath -Password $password
  6.  
  7. $rootCert = $(Import-PfxCertificate -FilePath $certKeyPath -CertStoreLocation 'Cert:\LocalMachine\Root' -Password $password)

注意:

  • 需要使用Administrator模式打开PowerShell窗口
  • DnsName, CertKeyPath和 password的内容都可根据需求进行调整

 

 

第二步:准备两种读取证书的 .NET代码

方式一:通过证书文件名和密码读取加载证书

  1. public static string LoadPfx(string? filename, string password = "")
  2. {
  3. try
  4. {
  5. if (filename == null) filename = "contoso.com.pfx";
  6. var bytes = File.ReadAllBytes(filename);
  7. var cert = new X509Certificate2(bytes, password);
  8. return cert.ToString();
  9. }
  10. catch (Exception ex)
  11. {
  12. return ex.Message;
  13. }
  14. }

 

方式二:通过指纹在系统证书库中查找证书

  1. public static string FindPfx(string certThumbprint = "")
  2. {
  3. try
  4. {
  5. bool validOnly = false;
  6. using (X509Store certStore = new X509Store(StoreName.My, StoreLocation.CurrentUser))
  7. {
  8. certStore.Open(OpenFlags.ReadOnly);
  9. X509Certificate2Collection certCollection = certStore.Certificates.Find(
  10. X509FindType.FindByThumbprint,
  11. // Replace below with your certificate's thumbprint
  12. certThumbprint,
  13. validOnly);
  14. // Get the first cert with the thumbprint
  15. X509Certificate2 cert = certCollection.OfType<X509Certificate2>().FirstOrDefault();
  16. if (cert is null)
  17. throw new Exception($"Certificate with thumbprint {certThumbprint} was not found");
  18. return cert.ToString();
  19. }
  20. }
  21. catch (Exception ex) { return ex.Message; }
  22. } 

在本次实验中,通过API来调用以上 LoadPfx 和 FindPfx 方法

 

 

第三步:发布测试应用到Azure App Service

步骤参考发布 Web 应用:https://docs.azure.cn/zh-cn/app-service/quickstart-dotnetcore?tabs=net70&pivots=development-environment-vs#2-publish-your-web-app

 

第四步:测试接口并修复问题

通过文件方式读取证书内容,测试成功

但是,通过指纹查找的时候,却返回无法找到证书。

Certificate with thumbprint 5A1E7923F5638549F4BA3E29EEDBBDCB2E9B572E was not found

这是原因有两种:

1)证书没有添加到App Service的Certificates中。

2)需要在App Service的Configuration中添加配置WEBSITE_LOAD_CERTIFICATES参数,值为 * 或者是固定的 证书指纹值。

检查以上两点原因后,再次通过指纹方式查找证书。成功!

示例代码

  1. 1 using Microsoft.AspNetCore.Mvc;
  2. 2 using System.Security.Cryptography.X509Certificates;
  3. 3
  4. 4 var builder = WebApplication.CreateBuilder(args);
  5. 5
  6. 6 // Add services to the container.
  7. 7
  8. 8 var app = builder.Build();
  9. 9
  10. 10 // Configure the HTTP request pipeline.
  11. 11
  12. 12 app.UseHttpsRedirection();
  13. 13
  14. 14
  15. 15 app.MapGet("/loadpfxbyname", ([FromQuery(Name = "name")] string filename, [FromQuery(Name = "pwd")] string pwd) =>
  16. 16 {
  17. 17 var content = pfxTesting.LoadPfx(filename, pwd);
  18. 18 return content;
  19. 19 });
  20. 20
  21. 21 app.MapGet("/loadpfx/{pwd}", (string pwd) =>
  22. 22 {
  23. 23
  24. 24 var content = pfxTesting.LoadPfx(null, pwd);
  25. 25 return content;
  26. 26 });
  27. 27
  28. 28 app.MapGet("/findpfx/{certThumbprint}", (string certThumbprint) =>
  29. 29 {
  30. 30
  31. 31 var content = pfxTesting.FindPfx(certThumbprint);
  32. 32 return content;
  33. 33 });
  34. 34
  35. 35 app.Run();
  36. 36
  37. 37 class pfxTesting
  38. 38 {
  39. 39 public static string LoadPfx(string? filename, string password = "")
  40. 40 {
  41. 41 try
  42. 42 {
  43. 43 if (filename == null) filename = "contoso.com.pfx";
  44. 44
  45. 45 var bytes = File.ReadAllBytes(filename);
  46. 46 var cert = new X509Certificate2(bytes, password);
  47. 47
  48. 48 return cert.ToString();
  49. 49 }
  50. 50 catch (Exception ex)
  51. 51 {
  52. 52 return ex.Message;
  53. 53 }
  54. 54 }
  55. 55
  56. 56 public static string FindPfx(string certThumbprint = "")
  57. 57 {
  58. 58 try
  59. 59 {
  60. 60 bool validOnly = false;
  61. 61 using (X509Store certStore = new X509Store(StoreName.My, StoreLocation.CurrentUser))
  62. 62 {
  63. 63 certStore.Open(OpenFlags.ReadOnly);
  64. 64
  65. 65 X509Certificate2Collection certCollection = certStore.Certificates.Find(
  66. 66 X509FindType.FindByThumbprint,
  67. 67 // Replace below with your certificate's thumbprint
  68. 68 certThumbprint,
  69. 69 validOnly);
  70. 70 // Get the first cert with the thumbprint
  71. 71 X509Certificate2 cert = certCollection.OfType<X509Certificate2>().FirstOrDefault();
  72. 72
  73. 73 if (cert is null)
  74. 74 throw new Exception($"Certificate with thumbprint {certThumbprint} was not found");
  75. 75
  76. 76 return cert.ToString();
  77. 77
  78. 78 }
  79. 79 }
  80. 80 catch (Exception ex) { return ex.Message; }
  81. 81 }
  82. 82 }

 

参考资料

发布 Web 应用:https://docs.azure.cn/zh-cn/app-service/quickstart-dotnetcore?tabs=net70&pivots=development-environment-vs#2-publish-your-web-app

生成自签名证书概述  https://learn.microsoft.com/zh-cn/dotnet/core/additional-tools/self-signed-certificates-guide#with-powershell

在 Azure 应用服务中通过代码使用 TLS/SSL 证书 : https://docs.azure.cn/zh-cn/app-service/configure-ssl-certificate-in-code#load-certificate-from-file

 

[END]

 

原文链接:https://www.cnblogs.com/lulight/p/18219072

 友情链接:直通硅谷  点职佳  北美留学生论坛

本站QQ群:前端 618073944 | Java 606181507 | Python 626812652 | C/C++ 612253063 | 微信 634508462 | 苹果 692586424 | C#/.net 182808419 | PHP 305140648 | 运维 608723728

W3xue 的所有内容仅供测试,对任何法律问题及风险不承担任何责任。通过使用本站内容随之而来的风险与本站无关。
关于我们  |  意见建议  |  捐助我们  |  报错有奖  |  广告合作、友情链接(目前9元/月)请联系QQ:27243702 沸活量
皖ICP备17017327号-2 皖公网安备34020702000426号