open installed computer check certificates c# .net certificate self-signed

installed - ¿Cómo crear un certificado autofirmado usando C#?



open certificates (4)

Necesito crear un certificado autofirmado (para el cifrado local, no se usa para proteger las comunicaciones), usando C #.

He visto algunas implementaciones que usan P/Invoke con Crypt32.dll , pero son complicadas y es difícil actualizar los parámetros, y también me gustaría evitar P / Invoke si es posible.

No necesito algo que sea multiplataforma; correr solo en Windows es lo suficientemente bueno para mí.

Idealmente, el resultado sería un objeto X509Certificate2 que puedo usar para insertar en el almacén de certificados de Windows o exportarlo a un archivo PFX.




Puede usar la biblioteca gratuita PluralSight.Crypto para simplificar la creación programática de certificados x509 autofirmados:

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); }

PluralSight.Crypto requiere .NET 3.5 o posterior.


Esta implementación utiliza el objeto COM CX509CertificateRequestCertificate (y amigos - MSDN doc ) de certenroll.dll para crear una solicitud de certificado autofirmado y firmarlo.

El siguiente ejemplo es bastante directo (si ignoras los bits de las cosas COM que se muestran aquí) y hay algunas partes del código que son realmente opcionales (como EKU) que son, sin embargo, útiles y fáciles de usar. adaptarse a tu uso

public static X509Certificate2 CreateSelfSignedCertificate(string subjectName) { // create DN for subject and issuer var dn = new CX500DistinguishedName(); dn.Encode("CN=" + subjectName, X500NameFlags.XCN_CERT_NAME_STR_NONE); // create a new private key for the certificate CX509PrivateKey privateKey = new CX509PrivateKey(); privateKey.ProviderName = "Microsoft Base Cryptographic Provider v1.0"; privateKey.MachineContext = true; privateKey.Length = 2048; privateKey.KeySpec = X509KeySpec.XCN_AT_SIGNATURE; // use is not limited privateKey.ExportPolicy = X509PrivateKeyExportFlags.XCN_NCRYPT_ALLOW_PLAINTEXT_EXPORT_FLAG; privateKey.Create(); // Use the stronger SHA512 hashing algorithm var hashobj = new CObjectId(); hashobj.InitializeFromAlgorithmName(ObjectIdGroupId.XCN_CRYPT_HASH_ALG_OID_GROUP_ID, ObjectIdPublicKeyFlags.XCN_CRYPT_OID_INFO_PUBKEY_ANY, AlgorithmFlags.AlgorithmFlagsNone, "SHA512"); // add extended key usage if you want - look at MSDN for a list of possible OIDs var oid = new CObjectId(); oid.InitializeFromValue("1.3.6.1.5.5.7.3.1"); // SSL server var oidlist = new CObjectIds(); oidlist.Add(oid); var eku = new CX509ExtensionEnhancedKeyUsage(); eku.InitializeEncode(oidlist); // Create the self signing request var cert = new CX509CertificateRequestCertificate(); cert.InitializeFromPrivateKey(X509CertificateEnrollmentContext.ContextMachine, privateKey, ""); cert.Subject = dn; cert.Issuer = dn; // the issuer and the subject are the same cert.NotBefore = DateTime.Now; // this cert expires immediately. Change to whatever makes sense for you cert.NotAfter = DateTime.Now; cert.X509Extensions.Add((CX509Extension)eku); // add the EKU cert.HashAlgorithm = hashobj; // Specify the hashing algorithm cert.Encode(); // encode the certificate // Do the final enrollment process var enroll = new CX509Enrollment(); enroll.InitializeFromRequest(cert); // load the certificate enroll.CertificateFriendlyName = subjectName; // Optional: add a friendly name string csr = enroll.CreateRequest(); // Output the request in base64 // and install it back as the response enroll.InstallResponse(InstallResponseRestrictionFlags.AllowUntrustedCertificate, csr, EncodingType.XCN_CRYPT_STRING_BASE64, ""); // no password // output a base64 encoded PKCS#12 so we can import it back to the .Net security classes var base64encoded = enroll.CreatePFX("", // no password, this is for internal consumption PFXExportOptions.PFXExportChainWithRoot); // instantiate the target class with the PKCS#12 data (and the empty password) return new System.Security.Cryptography.X509Certificates.X509Certificate2( System.Convert.FromBase64String(base64encoded), "", // mark the private key as exportable (this is usually what you want to do) System.Security.Cryptography.X509Certificates.X509KeyStorageFlags.Exportable ); }

El resultado se puede agregar a un almacén de certificados utilizando X509Store o exportar utilizando los métodos X509Certificate2 .

Para una plataforma completamente administrada y no vinculada a Microsoft, y si está bien con la licencia de Mono, entonces puede ver X509CertificateBuilder desde Mono.Security . Mono.Security es independiente de Mono, ya que no necesita el resto de Mono para ejecutarse y se puede usar en cualquier entorno .Net compatible (por ejemplo, la implementación de Microsoft).