Skip to main content

encrypt_data

Encrypt arbitrary data with chacha using wallet view secret key

URL: http:://127.0.0.1:11211/json_rpc

Request:

{
"id": 0,
"jsonrpc": "2.0",
"method": "encrypt_data",
"params": {
"buff": "ZGNjc2Ztc2xrZm12O2xrZm12OydlbGtmdm0nbGtmbXY="
}
}

Request description:

    "buff": base64-encoded data message to be encrypted

Response:

{
"id": 0,
"jsonrpc": "2.0",
"result": {
"res_buff": "ZGNjc2Ztc2xrZm12O2xrZm12OydlbGtmdm0nbGtmbXY="
}
}

Response description:

    "res_buff": base64-encoded ciphertext

Auto-doc built with: 2.2.1.501[fc57729]