1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
| {
| "groups": [
| {
| "name": "blade.api.crypto",
| "type": "com.qianwen.core.api.crypto.config.ApiCryptoProperties",
| "sourceType": "com.qianwen.core.api.crypto.config.ApiCryptoProperties"
| }
| ],
| "properties": [
| {
| "name": "blade.api.crypto.aes-key",
| "type": "java.lang.String",
| "description": "aes 密钥",
| "sourceType": "com.qianwen.core.api.crypto.config.ApiCryptoProperties"
| },
| {
| "name": "blade.api.crypto.des-key",
| "type": "java.lang.String",
| "description": "des 密钥",
| "sourceType": "com.qianwen.core.api.crypto.config.ApiCryptoProperties"
| },
| {
| "name": "blade.api.crypto.enabled",
| "type": "java.lang.Boolean",
| "description": "是否开启 api 签名",
| "sourceType": "com.qianwen.core.api.crypto.config.ApiCryptoProperties",
| "defaultValue": true
| },
| {
| "name": "blade.api.crypto.param-name",
| "type": "java.lang.String",
| "description": "url的参数签名,传递的参数名。例如:\/user?data=签名后的数据",
| "sourceType": "com.qianwen.core.api.crypto.config.ApiCryptoProperties",
| "defaultValue": "data"
| },
| {
| "name": "blade.api.crypto.rsa-private-key",
| "type": "java.lang.String",
| "description": "rsa 私钥",
| "sourceType": "com.qianwen.core.api.crypto.config.ApiCryptoProperties"
| }
| ],
| "hints": []
| }
|
|