日韩av黄I国产麻豆传媒I国产91av视频在线观看I日韩一区二区三区在线看I美女国产在线I麻豆视频国产在线观看I成人黄色短片

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 >

证书

發布時間:2025/4/5 60 豆豆
生活随笔 收集整理的這篇文章主要介紹了 证书 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

SelfCert: Create a Self-Signed Certificate Interactively (GUI) or Programmatically in .NET

By Keith Sparkjoy

While this isn’t new, I needed a new home for it since my old Pluralsight blog is gone now. Hopefully you’ll find it helpful!

It’s a bit of a pain to create self-signed certs using MAKECERT. So here’s a GUI-based tool that uses a combination of the .NET Framework and the CryptoAPI to create self-signed X.509 certificates. And it’s factored so that you can use the underlying library standalone – you can easily create certs programmatically now.

Here’s the GUI:

The GUI has some nifty features: you can create a PFX file directly, or you can save directly to a cert store of your choice. When you save to a cert store, an extra dialog pops up showing you where the private key file resides, so that you can adjust the ACL accordingly. I’ve got a “view private key” feature that launches explorer with the /select argument, taking you to the private key file so that you can set the ACL on it. Anyway, this extra dialog gives you some quick info you typically want, like the thumbprint. And there are buttons for browsing the cert store and viewing the certificate as well from here.

The GUI gens the RSA key pair on a background thread, so a) the app doesn’t lock up on you, and b) if you get tired of waiting for the key to gen, you can cancel easily enough

Here’s some code that does this programmatically by calling the Pluralsight.Crypto library that is underneath all of this. Those of you who are familiar with the CryptoAPI will recognize the key abstraction here, CryptContext.

static void GenSelfSignedCert() {using (CryptContext ctx = new CryptContext()){ctx.Open();X509Certificate2 cert = ctx.CreateSelfSignedCertificate(new SelfSignedCertProperties{IsPrivateKeyExportable = true,KeyBitLength = 4096,Name = new X500DistinguishedName("cn=localhost"),ValidFrom = DateTime.Today.AddDays(-1),ValidTo = DateTime.Today.AddYears(1),});X509Certificate2UI.DisplayCertificate(cert);} }

Make sure you’ve got the Microsoft .NET Framework 3.5 installed. Self-Cert relies on it.

Download the project here, which includes binaries and sources. Feel free to use Pluralsight.Crypto in your own projects if you find it useful. Enjoy!

Ready to test your skills in .NET? See how they stack up with this assessment from Smarterer.?Start this .NET test now

總結

以上是生活随笔為你收集整理的证书的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。