encrypt


Purpose

Accepts string data to return a Base-64 encoded string containing encrypted data.

The data is encrypted using the RSA public key, generated using the generateKeys method.

Signature

encryption.RSA.encrypt ( message, publicKey, callback)

Returns

This method does not return anything.

Parameters

Name Description Type Use
message String data to be encrypted. string required
publicKey A public key, generated using the generateKeys method. string required
callback Passed as a result of the encryption process. object required

Callback structure

The callback may be structured as follows:

{
	onFailure: function(error) { ... },
	onSuccess: function(encryptedString) { ... }
}

Methods

Name Description Return type
onFailure Indicates that it was impossible to encrypt the message. undefined
onSuccess Indicates that the encryption process completed. Passes a Base-64 encoded string that contains data encrypted using the RSA public key. undefined

Related topics

Overview
Legal notice | Copyright © 2015 and Confidential to Pegasystems Inc. All rights reserved. | Feedback
Advanced...