tencentcloud-faceid-crypto-nodejs
v1.0.0
Published
faceid产品中所有接口的出入参加密解密工具。
Downloads
1
Readme
faceid-api-crypto-nodejs
faceid产品中所有接口的出入参加密解密工具。
用法
- 初始化
init(publicKey,alg,keyExpire)
- 仅入参需要加密
encrypt(req,fields)
- 仅出参需要加密
req, plaintextKey = encrypt(req,[])
rsp = send(req)
decrypt(rsp,plaintextKey)
- 出入参都需要加密
req, plaintextKey = encrypt(req,fields)
rsp = send(req)
decrypt(rsp,plaintextKey)
更详细的用法,详见example