Create key
Use this endpoint to create additional keys for an existing user.
- You must provide the encrypted token in the request, as described in the encryption instructions below.
Encryption is needed to this endpoint using your own Authorise key. Please follow the steps below:
Encryption Process using AES and RSA encryption :
- AES Encryption: Encrypt the JSON payload using a 128-bit AES key and encode it in Base64.
- RSA Encryption: Encrypt the AES key using RSA/ECB/PKCS1Padding with the Authorise's public key and encode it in Base64.
- Send Encrypted Data: Include the AES-encrypted payload (
encryptedPayload
) and the RSA-encrypted AES key (encryptedSymmetricKey
) in the request headers
Updated 19 days ago