decodeAES128 AES128解密

decodeAES128 ^7.10

AES128解密

#请求参数

Prop Type Default Comment
decode String N/A 待解密的密文
key String N/A AES128密钥,选传参数,如果不传则取原生的密钥

#接口调用示例

const params = {
    "decode": "待解密的密文",
    "key": "AES128密钥,选传参数,如果不传则取原生的密钥"
}
this.$bridge
  .decodeAES128(params)
  .then(res => {
    this.$alert(res)
  })
  .catch(err => {
    this.$toast(err)
  })

#接口返回示例

N/A
posted on 2024-12-17 09:31  AtlasLapetos  阅读(13)  评论(0)    收藏  举报