Sample code for 30+ languages & platforms
Node.js

Load PEM Public/Private Key into RSA Object

See more RSA Examples

Demonstrates how to load a PEM key into the Chilkat RSA object.

Chilkat Node.js Downloads

Node.js
NODEJS_PRELUDE

function chilkatExample() {

    var success = false;

    // This example assumes the Chilkat API to have been previously unlocked.
    // See Global Unlock Sample for sample code.

    var rsa = new chilkat.Rsa();

    // First demonstrate importing a PEM public key:
    var publicKeyPem = "PEM public-key data goes here";
    var pubkey = new chilkat.PublicKey();

    success = pubkey.LoadFromString(publicKeyPem);
    if (success == false) {
        console.log(pubkey.LastErrorText);
        return;
    }

    success = rsa.UsePublicKey(pubkey);
    if (success == false) {
        console.log(rsa.LastErrorText);
        return;
    }

    // Demonstrate importing a PEM private key:
    var privateKeyPem = "PEM private-key data goes here";
    var privkey = new chilkat.PrivateKey();

    // If the private key PEM is protected with a password, then 
    // call LoadEncryptedPem.  Otherwise call LoadPem.
    success = privkey.LoadPem(privateKeyPem);
    if (success == false) {
        console.log(privkey.LastErrorText);
        return;
    }

    success = rsa.UsePrivateKey(privkey);
    if (success == false) {
        console.log(rsa.LastErrorText);
        return;
    }

    console.log("OK!");

}

chilkatExample();