## 支付文档
# [](https://github.com/alipay/alipay-easysdk/blob/master/APIDoc.md#%E8%BE%85%E5%8A%A9%E5%B7%A5%E5%85%B7-util)辅助工具 Util
## [](https://github.com/alipay/alipay-easysdk/blob/master/APIDoc.md#%E5%8A%A0%E8%A7%A3%E5%AF%86-aes)加解密 AES
### [](https://github.com/alipay/alipay-easysdk/blob/master/APIDoc.md#aes%E8%A7%A3%E5%AF%86%E5%B8%B8%E7%94%A8%E4%BA%8E%E4%BC%9A%E5%91%98%E6%89%8B%E6%9C%BA%E5%8F%B7%E8%A7%A3%E5%AF%86)AES解密(常用于会员手机号解密)
* API声明
decrypt(cipherText: string)
* 入参说明
| 字段名 | 类型 | 必填 | 说明 |
| --- | --- | --- | --- |
| cipherText | string | 是 | 密文 |
* 出参说明
| 类型 | 说明 |
| --- | --- |
| string | 明文 |
### [](https://github.com/alipay/alipay-easysdk/blob/master/APIDoc.md#aes%E5%8A%A0%E5%AF%86)AES加密
* API声明
encrypt(plainText: string)
* 入参说明
| 字段名 | 类型 | 必填 | 说明 |
| --- | --- | --- | --- |
| plainText | string | 是 | 明文 |
* 出参说明
| 类型 | 说明 |
| --- | --- |
| string | 密文 |
## [](https://github.com/alipay/alipay-easysdk/blob/master/APIDoc.md#%E9%80%9A%E7%94%A8%E6%8E%A5%E5%8F%A3-generic)通用接口 Generic
### [](https://github.com/alipay/alipay-easysdk/blob/master/APIDoc.md#%E6%89%A7%E8%A1%8Copenapi%E8%B0%83%E7%94%A8)执行OpenAPI调用
* API声明
execute(method: string, textParams: map\[string\]string, bizParams: map\[string\]any): AlipayOpenApiGenericResponse
* 接口说明
对于Alipay Easy SDK尚未支持的Open API,开发者可以通过调用此方法,通过自行拼装请求参数,完成几乎所有OpenAPI的调用,且调用时可按需设置所有可选参数。本接口同样会自动为您完成请求的加签和响应的验签工作。
* 入参说明
| 字段名 | 类型 | 必填 | 说明 |
| --- | --- | --- | --- |
| method | string | 是 | OpenAPI的名称,例如:alipay.trade.pay |
| textParams | map\[string\]string | 否 | **没有**包装在`biz_content`下的请求参数集合,例如`app_auth_token`等参数 |
| bizParams | map\[string\]any | 否 | 被包装在`biz_content`下的请求参数集合 |
* 出参说明
| 字段名 | 类型 | 必填 | 说明 |
| --- | --- | --- | --- |
| httpBody | string | 是 | 网关返回的HTTP响应,是一个JSON格式的字符串,开发者可按需从中解析出响应参数,响应示例:{"alipay\_trade\_create\_response":{"code":"10000","msg":"Success","out\_trade\_no":"4ac9eac...","trade\_no":"202003..."},"sign":"AUumfYgGSe7...02MA=="} |
| code | string | 是 | [网关返回码](https://docs.open.alipay.com/common/105806) |
| msg | string | 是 | [网关返回码描述](https://docs.open.alipay.com/common/105806) |
| subCode | string | 否 | 业务返回码,参见具体的API接口文档 |
| subMsg | string | 否 | 业务返回码描述,参见具体的API接口文档 |