Data Preparation and Encryption
In this section, we'll go through the process of preparing your data for secure transmission using our API. This involves encrypting your data and then hashing it using HMAC SHA512 with base64 encoding.
Prepare Data
Start by preparing the following data structure:
Encrypt Data
Next, encrypt the following data:
Hashing Step
HMAC SHA512 Hashing: Use your 'key' to hash the encrypted data using HMAC SHA512.
Base64 Encoding: Encode the hash in base64.
Example output hash:
This hash represents your secured data, ready for transmission through our API.
Last updated