Chilkat HOME .NET Core C# Android™ AutoIt C C# C++ Chilkat2-Python CkPython Classic ASP DataFlex Delphi ActiveX Delphi DLL Go Java Lianja Mono C# Node.js Objective-C PHP ActiveX PHP Extension Perl PowerBuilder PowerShell PureBasic Ruby SQL Server Swift 2 Swift 3,4,5... Tcl Unicode C Unicode C++ VB.NET VBScript Visual Basic 6.0 Visual FoxPro Xojo Plugin
(Visual FoxPro) Duplicate openssl req -newkey rsa:2048 -nodes -keyout mydomain.pem -out mydomain.csrDemonstrates how to duplicate this OpenSSL command: openssl req -newkey rsa:2048 -nodes -keyout mydomain.pem -out mydomain.csr This command creates 2 files:
The second file is needed to pair with the certificate that will later be received from the CA.
LOCAL loRsa LOCAL lnSuccess LOCAL loPrivKey LOCAL loPrivKeyXml LOCAL lcKeyModulus LOCAL loAsnRoot LOCAL loAsnCertReqInfo LOCAL loAsnCertSubject LOCAL loAsnTemp LOCAL loAsnPubKeyInfo LOCAL loAsnPubKeyAlgId LOCAL loAsnRsaKey LOCAL lcRsaKeyDerBase64 LOCAL loBdDer LOCAL loBdSig LOCAL loAsnAlgId LOCAL lcCsrBase64 * This example requires the Chilkat API to have been previously unlocked. * See Global Unlock Sample for sample code. * For versions of Chilkat < 10.0.0, use CreateObject('Chilkat_9_5_0.Rsa') loRsa = CreateObject('Chilkat.Rsa') * Generate a 2048-bit key. Chilkat RSA supports * key sizes ranging from 512 bits to 8192 bits. lnSuccess = loRsa.GenerateKey(2048) IF (lnSuccess <> 1) THEN ? loRsa.LastErrorText RELEASE loRsa CANCEL ENDIF loPrivKey = loRsa.ExportPrivateKeyObj() * Save the private key to unencrypted PKCS8 PEM lnSuccess = loPrivKey.SavePkcs8PemFile("mydomain.pem") * (alternatively) Save the private key to encrypted PKCS8 PEM lnSuccess = loPrivKey.SavePkcs8EncryptedPemFile("myPassword","mydomain_enc.pem") * We'll need the private key's modulus for the CSR. * The modulus is not something that needs to be protected. Most people don't realize * that a public key is actually just a subset of the private key. The public parts of * an RSA private key are the modulus and exponent. The exponent is always 65537. * For versions of Chilkat < 10.0.0, use CreateObject('Chilkat_9_5_0.Xml') loPrivKeyXml = CreateObject('Chilkat.Xml') lnSuccess = loPrivKeyXml.LoadXml(loPrivKey.GetXml()) * Get the modulus in base64 format: lcKeyModulus = loPrivKeyXml.GetChildContent("Modulus") * -------------------------------------------------------------------------------- * Now build the CSR using Chilkat's ASN.1 API. * The keyModulus will be embedded within the ASN.1. * A new ASN.1 object is automatically a SEQUENCE. * Given that the CSR's root item is a SEQUENCE, we can use * this as the root of our CSR. * For versions of Chilkat < 10.0.0, use CreateObject('Chilkat_9_5_0.Asn') loAsnRoot = CreateObject('Chilkat.Asn') * Beneath the root, we have a SEQUENCE (the certificate request info), * another SEQUENCE (the algorithm identifier), and a BITSTRING (the signature data) lnSuccess = loAsnRoot.AppendSequence() lnSuccess = loAsnRoot.AppendSequence() * ---------------------------------- * Build the Certificate Request Info * ---------------------------------- loAsnCertReqInfo = loAsnRoot.GetSubItem(0) lnSuccess = loAsnCertReqInfo.AppendInt(0) * Build the Subject part of the Certificate Request Info loAsnCertSubject = loAsnCertReqInfo.AppendSequenceR() * Add each subject part.. loAsnTemp = loAsnCertSubject.AppendSetR() lnSuccess = loAsnTemp.AppendSequence2() * AppendSequence2 updates the internal reference to the newly appended SEQUENCE. * The OID and printable string are added to the SEQUENCE. lnSuccess = loAsnTemp.AppendOid("2.5.4.6") lnSuccess = loAsnTemp.AppendString("printable","US") RELEASE loAsnTemp loAsnTemp = loAsnCertSubject.AppendSetR() lnSuccess = loAsnTemp.AppendSequence2() lnSuccess = loAsnTemp.AppendOid("2.5.4.8") lnSuccess = loAsnTemp.AppendString("utf8","Utah") RELEASE loAsnTemp loAsnTemp = loAsnCertSubject.AppendSetR() lnSuccess = loAsnTemp.AppendSequence2() lnSuccess = loAsnTemp.AppendOid("2.5.4.7") lnSuccess = loAsnTemp.AppendString("utf8","Lindon") RELEASE loAsnTemp loAsnTemp = loAsnCertSubject.AppendSetR() lnSuccess = loAsnTemp.AppendSequence2() lnSuccess = loAsnTemp.AppendOid("2.5.4.10") lnSuccess = loAsnTemp.AppendString("utf8","DigiCert Inc.") RELEASE loAsnTemp loAsnTemp = loAsnCertSubject.AppendSetR() lnSuccess = loAsnTemp.AppendSequence2() lnSuccess = loAsnTemp.AppendOid("2.5.4.11") lnSuccess = loAsnTemp.AppendString("utf8","DigiCert") RELEASE loAsnTemp loAsnTemp = loAsnCertSubject.AppendSetR() lnSuccess = loAsnTemp.AppendSequence2() lnSuccess = loAsnTemp.AppendOid("2.5.4.3") lnSuccess = loAsnTemp.AppendString("utf8","example.digicert.com") RELEASE loAsnTemp RELEASE loAsnCertSubject * Build the Public Key Info part of the Certificate Request Info loAsnPubKeyInfo = loAsnCertReqInfo.AppendSequenceR() loAsnPubKeyAlgId = loAsnPubKeyInfo.AppendSequenceR() lnSuccess = loAsnPubKeyAlgId.AppendOid("1.2.840.113549.1.1.1") lnSuccess = loAsnPubKeyAlgId.AppendNull() RELEASE loAsnPubKeyAlgId * The public key itself is a BIT STRING, but the bit string is composed of ASN.1 * for the RSA public key. We'll first build the RSA ASN.1 for the public key * (containing the 2048 bit modulus and exponent), and encoded it to DER, and then add * the DER bytes as a BIT STRING (as a sub-item of asnPubKeyInfo) * This is already a SEQUENCE.. * For versions of Chilkat < 10.0.0, use CreateObject('Chilkat_9_5_0.Asn') loAsnRsaKey = CreateObject('Chilkat.Asn') * The RSA modulus is a big integer. lnSuccess = loAsnRsaKey.AppendBigInt(lcKeyModulus,"base64") lnSuccess = loAsnRsaKey.AppendInt(65537) lcRsaKeyDerBase64 = loAsnRsaKey.GetEncodedDer("base64") * Now add the RSA key DER as a BIT STRING. lnSuccess = loAsnPubKeyInfo.AppendBits(lcRsaKeyDerBase64,"base64") RELEASE loAsnPubKeyInfo * The last part of the certificate request info is an empty context-specific constructed item * with a tag equal to 0. lnSuccess = loAsnCertReqInfo.AppendContextConstructed(0) * Get the DER of the asnCertReqInfo. * This will be signed using the RSA private key. * For versions of Chilkat < 10.0.0, use CreateObject('Chilkat_9_5_0.BinData') loBdDer = CreateObject('Chilkat.BinData') lnSuccess = loAsnCertReqInfo.WriteBd(loBdDer) * Add the signature to the ASN.1 * For versions of Chilkat < 10.0.0, use CreateObject('Chilkat_9_5_0.BinData') loBdSig = CreateObject('Chilkat.BinData') lnSuccess = loRsa.SignBd(loBdDer,"SHA1",loBdSig) lnSuccess = loAsnRoot.AppendBits(loBdSig.GetEncoded("base64"),"base64") RELEASE loAsnCertReqInfo * ---------------------------------- * Finally, add the algorithm identifier, which is the 2nd sub-item under the root. * ---------------------------------- loAsnAlgId = loAsnRoot.GetSubItem(1) lnSuccess = loAsnAlgId.AppendOid("1.2.840.113549.1.1.5") lnSuccess = loAsnAlgId.AppendNull() RELEASE loAsnAlgId * Write the CSR to a DER encoded binary file: lnSuccess = loAsnRoot.WriteBinaryDer("qa_output/mydomain.csr") IF (lnSuccess <> 1) THEN ? loAsnRoot.LastErrorText RELEASE loRsa RELEASE loPrivKeyXml RELEASE loAsnRoot RELEASE loAsnRsaKey RELEASE loBdDer RELEASE loBdSig CANCEL ENDIF * It is also possible to get the CSR in base64 format: lcCsrBase64 = loAsnRoot.GetEncodedDer("base64") ? "Base64 CSR:" ? lcCsrBase64 RELEASE loPrivKey RELEASE loRsa RELEASE loPrivKeyXml RELEASE loAsnRoot RELEASE loAsnRsaKey RELEASE loBdDer RELEASE loBdSig |
© 2000-2024 Chilkat Software, Inc. All Rights Reserved.