zoukankan      html  css  js  c++  java
  • C# https客户端获取证书的工具方法

    1. 导入证书到个人计算机中



    2. 获取证书

    [csharp] view plain copy
     
     print?
    1. private static X509Certificate2 GetSentosaCertificate()  
    2.         {  
    3.             X509Store userCaStore = new X509Store(StoreName.My, StoreLocation.LocalMachine);  
    4.             try  
    5.             {  
    6.                 userCaStore.Open(OpenFlags.ReadOnly);  
    7.                 X509Certificate2Collection certificatesInStore = userCaStore.Certificates;  
    8.                 X509Certificate2Collection findResult = certificatesInStore.Find(X509FindType.FindBySubjectName, "*.sentosa.com.sg", true);  
    9.                 X509Certificate2 clientCertificate = null;  
    10.                 if (findResult.Count == 1)  
    11.                 {  
    12.                     clientCertificate = findResult[0];  
    13.                 }  
    14.                 else  
    15.                 {  
    16.                     throw new Exception("Unable to locate the correct client certificate.");  
    17.                 }  
    18.                 return clientCertificate;  
    19.             }  
    20.             catch  
    21.             {  
    22.                 throw;  
    23.             }  
    24.             finally  
    25.             {  
    26.                 userCaStore.Close();  
    27.             }  
    28.         }  


    3. 将证书附加在http请求中即可

    http://www.woaipu.com/shops/zuzhuan/61406
    http://www.znds.com/tv-967956-1-1.html
    http://www.znds.com/tv-967958-1-1.html

  • 相关阅读:
    关于最短路算法
    牛客网练习赛7-D-无向图(bfs,链式前向星)
    51nod蜥蜴与地下室(1498)(暴力搜索)
    poj1062昂贵的聘礼(枚举+最短路)
    训练题(代码未检验)(序列前k大和问题)
    两个序列求前k大和
    欧拉回路
    hdu 6063 RXD and math
    hdu 6066 RXD's date
    bzoj 4300 绝世好题
  • 原文地址:https://www.cnblogs.com/sy646et/p/7198111.html
Copyright © 2011-2022 走看看