This guide is applicable to scenarios where sensitive data transmission needs to be encrypted in the eKYC service API.
The official SDK currently supports Java and Go development languages. The usage steps are as follows:
Retrieve Encryption and Decryption SDK
Java:
Golang:
Using SDKs
Support for Importing Public Dependencies
<dependency>
<groupId>org.bouncycastle</groupId>
<artifactId>bcprov-jdk15on</artifactId>
<version>1.70</version>
</dependency>
<dependency>
<groupId>org.bouncycastle</groupId>
<artifactId>bcpkix-jdk15on</artifactId>
<version>1.70</version>
</dependency>
Support for Importing Encryption and Decryption SDK
Refer to the following API Demo to implement the sensitive information encryption and decryption feature.
API Sensitive Information Encryption and Decryption Demo