Encrypt To
Encrypt a message using AES without sending it.
Request:
- requestType is encryptTo
- secretPhrase is the secret passphrase of the sender
- recipient is the account ID of the recipient
- messageToEncrypt is either UTF-8 text or a string of hex digits to be compressed and converted into a 1000 byte maximum bytecode then encrypted using AES
- messageToEncryptIsText is false if the message to encrypt is a hex string, otherwise the message to encrypt is text (optional)
- compressMessageToEncrypt is false to prevent gzip compression before encryption (optional)
Response:
- data (S) is the AES-encrypted data
- nonce (S) is a 32-byte pseudorandom nonce
- requestProcessingTime (N) is the API request processing time (in millisec)