Encrypting FIO Data

Overview

/new_funds_request and /record_obt_data require that certain sensitive data in those messages be encrypted using the Diffie-Hellman key exchnage scheme. This ensures that only the sender and receiver of the data can decrypt it.

The data is further serialized to reduce size. Currently there is no abi for that data, but you can find the relevant data elements inside the /new_funds_request and /record_obt_data API method specs.

Encryption inside wallet

Because the encryption of the data requires the private key of the sender and decryption requires the private key of the receiver, it can only be done inside the wallet. This is an important component of the FIO Protocol integration.

For those unfamiliar with Diffie-Hellman encryption, methods in fiojs SDK make this easy.

Image

Size limitations on encrypted data

Since the FIO Chain cannot see the encrypted content, it cannot enforce size limitations on the individual field. Size limitation is therefore enforced on the content field containing the encrypted string.

Method Minimum characters Maximum characters
/new_funds_request 64 296
/record_obt_data 64 432

Once you factor encryption overhead the available characters for all parameters are:

Method Maximum characters
/new_funds_request 145
/record_obt_data 260

FIO Request

Assuming typical FIO Request contains the following required parameters:

Parameter Typical size
payee_public_address 50
amount 8
chain_code 3
token_code 3

This would allow for a memo field to be as long as 81 characters. However, some blockchains can have public addresses of over 100 characters, which can severely limit the characters available for memo.

It is recommended that the memo restrictions are computed dynamically based on public address and amount entered.