API Encryption Transmission
After this function is enabled, API requests and responses are encrypted using the AES-CBC algorithm to ensure data security during transmission.
Unlock Encryption transmission

aes_key
for encrypted transmission:
AES-CBC(Cipher Block Chaining) mode
Request/Response Format
iv
: The Initialization Vector originally used to create the object.encrypted_data
: Encrypt data with the key and the parameters set at initialization.{
"iv": "7DJ9PJKPXVlPRMaBaf0HAA==",
"encrypted_data": "VOuk64ypjBrX2ZweEJgpMWIXtG6Vr0OB5dtfaHjfWYEOIzO3MfNNMlOza63zjG87"
}
Transmission example
Here Create Sub-Address is used as a reference
The code is for reference only. Adjust it according to the actual service
Implementation in Python
Implementation in Golang