摘要: What is the default value for enum variable? It is whatever member of the enumeration represents the value 0. Specifically, from the documentation: Th 阅读全文
posted @ 2021-12-10 21:29 ChuckLu 阅读(46) 评论(0) 推荐(0)
摘要: StoreName Enum AddressBook 1 The X.509 certificate store for other users. AuthRoot 2 The X.509 certificate store for third-party certificate authoriti 阅读全文
posted @ 2021-12-10 20:46 ChuckLu 阅读(33) 评论(0) 推荐(0)
摘要: X509Certificate2.FriendlyName Gets or sets the associated alias for a certificate. Friendly names are properties in the X.509 certificate store that c 阅读全文
posted @ 2021-12-10 19:32 ChuckLu 阅读(287) 评论(0) 推荐(0)
摘要: Create a .pfx/.p12 Certificate File Using OpenSSL In cryptography, the PKCS#12 or PFX format is a binary format often used to store all elements of th 阅读全文
posted @ 2021-12-10 19:02 ChuckLu 阅读(123) 评论(0) 推荐(0)
摘要: How Certificate Chains Work Solution What is a Certificate Chain? A certificate chain is an ordered list of certificates, containing an SSL/TLS Certif 阅读全文
posted @ 2021-12-10 18:11 ChuckLu 阅读(520) 评论(0) 推荐(0)
摘要: OpenSSL and s_client - why is a private key required from the client? 回答1 Certificates on their own are only public pieces of information. What links 阅读全文
posted @ 2021-12-10 15:50 ChuckLu 阅读(179) 评论(0) 推荐(0)
摘要: .p12文件同时包含了证书,私钥,和证书链。安装.p12文件后,情况如下:有三个证书, Here is a simple way to identify where a certificate is a client certificate or not: https://techcommunity 阅读全文
posted @ 2021-12-10 15:36 ChuckLu 阅读(325) 评论(0) 推荐(0)
摘要: Client Certificate Authentication (Part 1) Here is a screenshot describing the SSL/TLS Handshake: Client sends CLIENT HELLO as described in the above 阅读全文
posted @ 2021-12-10 15:33 ChuckLu 阅读(114) 评论(0) 推荐(0)
摘要: https://datatracker.ietf.org/doc/html/rfc5246 7.3. Handshake Protocol Overview The TLS Handshake Protocol involves the following steps: - Exchange hel 阅读全文
posted @ 2021-12-10 14:51 ChuckLu 阅读(331) 评论(0) 推荐(0)
摘要: wireshark抓包之后,过滤语法ip.src==13.230.10.3 or ip.dst==13.230.10.3 13.230.10.3是服务器的ip ip.src==13.230.10.3,用来查看服务器发给客户端的请求 ip.dst==13.230.10.3,用来查看客户端发给服务器的请 阅读全文
posted @ 2021-12-10 14:43 ChuckLu 阅读(962) 评论(0) 推荐(0)