Sample code for 30+ languages & platforms
Visual FoxPro

PKCS11 Generate a Session RSA Key on the HSM

See more PKCS11 Examples

Generates an RSA key on the smart card or token and returns the public and private key handles. The generated RSA key exists only for the duration of the PKCS11 session.

Note: This example requires Chilkat v9.5.0.96 or later.

Chilkat Visual FoxPro Downloads

Visual FoxPro
LOCAL lnSuccess
LOCAL loPkcs11
LOCAL lcPin
LOCAL lnUserType
LOCAL loPubKeyAttr
LOCAL loPrivKeyAttr
LOCAL loJsonHandles
LOCAL loPubKey

lnSuccess = 0

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

* Note: Chilkat's PKCS11 implementation runs on Windows, Linux, Mac OS X, and other supported operating systems.

loPkcs11 = CreateObject('Chilkat.Pkcs11')

* Use the PKCS11 driver (.dll, .so, .dylib) for your particular HSM.
* (The format of the path will change with the operating system.  Obviously, "C:/" is not used on non-Windows systems.
loPkcs11.SharedLibPath = "C:/Program Files (x86)/Gemalto/IDGo 800 PKCS#11/IDPrimePKCS1164.dll"

* Establish a logged-on session.
lcPin = "0000"
lnUserType = 1
lnSuccess = loPkcs11.QuickSession(lnUserType,lcPin)
IF (lnSuccess = 0) THEN
    ? loPkcs11.LastErrorText
    RELEASE loPkcs11
    CANCEL
ENDIF

* Specify attributes and abilities (how this key can be used) by providing a JSON template.
* One template is for the public key, and the other for the private key.
loPubKeyAttr = CreateObject('Chilkat.JsonObject')

* Allow the public key to be used for encryption, signature verification, and symmetric key wrapping
* These attributes are optional.
loPubKeyAttr.UpdateBool("encrypt",1)
loPubKeyAttr.UpdateBool("verify",1)
loPubKeyAttr.UpdateBool("wrap",1)

* Generate a 2048-bit RSA key.
* This attribute is required.
loPubKeyAttr.UpdateInt("modulus_bits",2048)

loPrivKeyAttr = CreateObject('Chilkat.JsonObject')

* Generate a session RSA key.
* A session key exists only for the duration of the PKS11 session.
* To generate an RSA key that resides on the HSM, set the "token" attribute equal to 1
loPrivKeyAttr.UpdateBool("token",0)

* Allow the private key to be used for signing and decryption.
loPrivKeyAttr.UpdateBool("sign",1)
loPrivKeyAttr.UpdateBool("decrypt",1)

* Do not allow the private key to be extracted.
loPrivKeyAttr.UpdateBool("extractable",0)

* Provide a JSON object to receive the public and private key handles.
loJsonHandles = CreateObject('Chilkat.JsonObject')
loJsonHandles.EmitCompact = 0

* Provide a Chilkat public key object to receive the public key.
loPubKey = CreateObject('Chilkat.PublicKey')

lnSuccess = loPkcs11.GenRsaKey(loPubKeyAttr,loPrivKeyAttr,loJsonHandles,loPubKey)
IF (lnSuccess = 0) THEN
    ? loPkcs11.LastErrorText
    ? "Failed to generate an RSA key."
ELSE
    * Sample JSON handles:
    * {
    *   "public_key_handle": 18415630,
    *   "private_key_handle": 74842125
    * }
    ? loJsonHandles.Emit()
    ? "public_key_handle: " + STR(loJsonHandles.UIntOf("public_key_handle"))
    ? "private_key_handle: " + STR(loJsonHandles.UIntOf("private_key_handle"))
    ? "public key JWK:"
    ? loPubKey.GetJwk()
    * Sample JWK:
    * {"kty":"RSA","n":"1sQMSAntY80L .... If9jqfMp4omQ","e":"AQAB"}
    ? "Success."
ENDIF

loPkcs11.Logout()
loPkcs11.CloseSession()

RELEASE loPkcs11
RELEASE loPubKeyAttr
RELEASE loPrivKeyAttr
RELEASE loJsonHandles
RELEASE loPubKey