Methods
(static) this.aesDecrypt(key, data, cbSuccess, cbFail)
Base64 Encrypt In, Binary Out
Parameters:
| Name | Type | Description |
|---|---|---|
key |
string | Encryption key |
data |
string | Base64 string to decrypt |
cbSuccess |
function | Callback function that receives output |
cbFail |
function | Callback function if call failed |
- Source:
(static) this.aesEncrypt(key, data, cbSuccess, cbFail)
Binary In, Base64 Encrypt Out
Parameters:
| Name | Type | Description |
|---|---|---|
key |
string | Encryption key |
data |
string | Data string to encrypt |
cbSuccess |
function | Callback function that receives output |
cbFail |
function | Callback function if call failed |
- Source:
(static) this.tripleDesDecrypt(key, data, cbSuccess, cbFail)
Base64 Encrypt In, Binary Out
Parameters:
| Name | Type | Description |
|---|---|---|
key |
string | Encryption key |
data |
string | Base64 string to decrypt |
cbSuccess |
function | Callback function that receives output |
cbFail |
function | Callback function if call failed |
- Source:
(static) this.tripleDesEncrypt(key, data, cbSuccess, cbFail)
Binary In, Base64 Encrypt Out
Parameters:
| Name | Type | Description |
|---|---|---|
key |
string | Encryption key |
data |
string | Data string to encrypt |
cbSuccess |
function | Callback function that receives output |
cbFail |
function | Callback function if call failed |
- Source: