Sample code for 30+ languages & platforms
Lianja

Get RSA Key Modulus from .cer or .key

See more Certificates Examples

Demonstrates how to get the RSA key modulus from either the certificate (.cer) or RSA key (.key). OpenSSL commands to do the same would be:
openssl x509 -inform DER -in "test.cer"  -modulus -noout 
or
openssl pkcs8 -inform DER -in​ "test.key"​ -outform PEM -passin pass:"12345​678a​"
   | openssl rsa -inform PEM -modulus -noout 

Chilkat Lianja Downloads

Lianja
llSuccess = .F.

loPrivKey = createobject("CkPrivateKey")

lcPassword = "12345678a"
llSuccess = loPrivKey.LoadPkcs8EncryptedFile("qa_data/certs/test_12345678a.key",lcPassword)
if (llSuccess = .F.) then
    ? loPrivKey.LastErrorText
    release loPrivKey
    return
endif

loXml = createobject("CkXml")
loXml.LoadXml(loPrivKey.GetXml())

// The XML contains the parts of the key in base64.
? "Private Key XML:"
? loXml.GetXml()

// We can get the base64 modulus like this:
lcModulus = loXml.GetChildContent("Modulus")
? "base64 modulus = " + lcModulus

// To convert to hex:
loBinDat = createobject("CkBinData")
loBinDat.AppendEncoded(lcModulus,"base64")
lcHexModulus = loBinDat.GetEncoded("hex")
? "hex modulus = " + lcHexModulus

// Now get the modulus from the cert:
loCert = createobject("CkCert")

llSuccess = loCert.LoadFromFile("qa_data/certs/test_12345678a.cer")
if (llSuccess = .F.) then
    ? loCert.LastErrorText
    release loPrivKey
    release loXml
    release loBinDat
    release loCert
    return
endif

// The cert contains the public key, which is composed of the
// modulus + exponent (for RSA keys).
loPubKey = createobject("CkPublicKey")
loCert.GetPublicKey(loPubKey)

loXml.LoadXml(loPubKey.GetXml())
? "Public Key XML:"
? loXml.GetXml()

// Proceed in the same way as before....
lcModulus = loXml.GetChildContent("Modulus")
? "base64 modulus = " + lcModulus

// To convert to hex:
loBinDat.Clear()
loBinDat.AppendEncoded(lcModulus,"base64")
lcHexModulus = loBinDat.GetEncoded("hex")
? "hex modulus = " + lcHexModulus


release loPrivKey
release loXml
release loBinDat
release loCert
release loPubKey