huks-guidelines.md 78.8 KB
Newer Older
Z
zengyawen 已提交
1

W
wKyrong 已提交
2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
# 通用密钥库开发指导

## 生成新密钥

HUKS提供为业务安全随机生成密钥的能力。通过HUKS生成的密钥,密钥的全生命周期明文不会出安全环境,能保证任何人都无法接触获取到密钥的明文。即使生成密钥的业务自身,后续也只能通过HUKS提供的接口请求执行密钥操作,获取操作结果,但无法接触到密钥自身。


**<font size=5>开发步骤</font>**

生成密钥时使用[huks.generateKeyItem(keyAlias,options,callback)](../reference/apis/js-apis-huks.md#huksgeneratekeyitem9)方法,传入keyAlias作为密钥别名,传入options包含该密钥的属性集,传入callback用于回调异步结果。关于接口的具体信息,可在[API参考文档](../reference/apis/js-apis-huks.md)中查看。



1. 确定密钥别名;
2. 初始化密钥属性集:通过[HuksParam](../reference/apis/js-apis-huks.md#huksparam)封装密钥属性,搭配Array组成密钥属性集,并赋值给[HuksOptions](../reference/apis/js-apis-huks.md#huksoptions)(properties字段),其中必须包含[HuksKeyAlg](../reference/apis/js-apis-huks.md#hukskeyalg),[HuksKeySize](../reference/apis/js-apis-huks.md#hukskeysize),[HuksKeyPurpose](../reference/apis/js-apis-huks.md#hukskeypurpose)属性;
3. 将密钥别名与密钥参数集作为参数传入,生成密钥。


Z
zhangcheng 已提交
20 21 22

> **说明**
>
W
wKyrong 已提交
23
> 存储的 keyAlias 密钥别名最大为64字节
Z
zhangcheng 已提交
24

W
wKyrong 已提交
25
**代码示例:**
Z
zhangcheng 已提交
26 27

```ts
W
wKyrong 已提交
28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96
/*
 * 以下以生成DH密钥的Callback操作使用为例
 */
import huks from '@ohos.security.huks';

/*
 * 确定密钥别名和封装密钥属性参数集
 */
let keyAlias = 'dh_key';
let properties = new Array();
properties[0] = {
    tag: huks.HuksTag.HUKS_TAG_ALGORITHM,
    value: huks.HuksKeyAlg.HUKS_ALG_DH
}
properties[1] = {
    tag: huks.HuksTag.HUKS_TAG_PURPOSE,
    value: huks.HuksKeyPurpose.HUKS_KEY_PURPOSE_AGREE
}
properties[2] = {
    tag: huks.HuksTag.HUKS_TAG_KEY_SIZE,
    value: huks.HuksKeySize.HUKS_DH_KEY_SIZE_2048
}
properties[3] = {
    tag: huks.HuksTag.HUKS_TAG_DIGEST,
    value: huks.HuksKeyDigest.HUKS_DIGEST_SHA256
}
let huksOptions = {
    properties: properties,
    inData: new Uint8Array(new Array())
}

/*
 * 生成密钥
 */
function generateKeyItem(keyAlias: string, huksOptions: huks.HuksOptions) {
    return new Promise((resolve, reject) => {
        try {
            huks.generateKeyItem(keyAlias, huksOptions, function (error, data) {
                if (error) {
                    reject(error);
                } else {
                    resolve(data);
                }
            });
        } catch (error) {
            throw (error);
        }
    });
}

async function publicGenKeyFunc(keyAlias: string, huksOptions: huks.HuksOptions) {
    console.info(`enter callback generateKeyItem`);
    try {
        await generateKeyItem(keyAlias, huksOptions)
            .then((data) => {
                console.info(`callback: generateKeyItem success, data = ${JSON.stringify(data)}`);
            })
            .catch(error => {
                console.error(`callback: generateKeyItem failed, code: ${error.code}, msg: ${error.message}`);
            });
    } catch (error) {
        console.error(`callback: generateKeyItem input arg invalid, code: ${error.code}, msg: ${error.message}`);
    }
}


async function TestGenKey() {
    await publicGenKeyFunc(keyAlias, huksOptions);
}
Z
zhangcheng 已提交
97
```
Z
zhangcheng 已提交
98

W
wKyrong 已提交
99 100 101 102
## 导入外部密钥
如果密钥是在HUKS外部生成(比如应用间协商生成、服务器端生成),应用可以将密钥导入到HUKS托管。HUKS支持直接将密钥明文导入到HUKS,但是明文导入会导致密钥暴露在REE内存中,一般适用于轻量级设备或低安业务。对于高安敏感业务,HUKS还提供了安全导入密钥的能力,允许业务自己生成密钥,并通过与处于安全环境中的HUKS建立端到端的加密传输通道,将密钥安全加密导入到HUKS中,确保导入传入过程中密钥不被泄露。

与生成密钥一样,密钥一旦导入到HUKS中,密钥的生命周期明文不出安全环境,同样能保证任何人都无法接触获取到密钥的明文。
J
jianjew 已提交
103

J
--amend  
jianjew 已提交
104

J
jianjew 已提交
105

W
wKyrong 已提交
106
### 明文导入
J
jianjew 已提交
107 108


W
wKyrong 已提交
109
导入明文密钥时使用[huks.importKeyItem(keyAlias,options,callback)](../reference/apis/js-apis-huks.md#huksimportkeyitem9)方法,传入keyAlias作为密钥别名,传入options,其中必须包含密钥材料和密钥属性集,传入callback用于回调异步结果。关于接口的具体信息,可在[API参考文档](../reference/apis/js-apis-huks.md)中查看。
J
jianjew 已提交
110 111


W
wKyrong 已提交
112 113 114 115
1. 确定密钥别名;
2. 封装密钥材料和密钥属性集:密钥材料须符合[HUKS密钥材料格式](./huks-appendix.md#密钥材料格式)并以Uint8Array形式赋值给[HuksOptions](../reference/apis/js-apis-huks.md#huksoptions)的inData字段;另外,通过[HuksParam](../reference/apis/js-apis-huks.md#huksparam)封装密钥属性,搭配Array组成密钥属性集赋值给properties字段,属性集中必须包含[HuksKeyAlg](../reference/apis/js-apis-huks.md#hukskeyalg),[HuksKeySize](../reference/apis/js-apis-huks.md#hukskeysize),[HuksKeyPurpose](../reference/apis/js-apis-huks.md#hukskeypurpose)属性;
3. 导入密钥。

J
jianjew 已提交
116

W
wKyrong 已提交
117 118

**代码示例:**
J
jianjew 已提交
119 120

```ts
W
wKyrong 已提交
121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138
/*
 * 以导入AES256密钥为例
 */
 
/* 密钥 */
let plainTextSize32 = new Uint8Array([
  0xfb, 0x8b, 0x9f, 0x12, 0xa0, 0x83, 0x19, 0xbe, 0x6a, 0x6f, 0x63, 0x2a, 0x7c, 0x86, 0xba, 0xca,
  0x64, 0x0b, 0x88, 0x96, 0xe2, 0xfa, 0x77, 0xbc, 0x71, 0xe3, 0x0f, 0x0f, 0x9e, 0x3c, 0xe5, 0xf9
]);

/*
 * 确定密钥别名
 */
let keyAlias = 'AES256Alias_sample';

/*
 * 封装密钥属性集和密钥材料
 */ 
J
jianjew 已提交
139 140 141
let properties = new Array();
properties[0] = {
    tag: huks.HuksTag.HUKS_TAG_ALGORITHM,
W
wKyrong 已提交
142
    value: huks.HuksKeyAlg.HUKS_ALG_AES
J
jianjew 已提交
143 144 145
};
properties[1] = {
    tag: huks.HuksTag.HUKS_TAG_KEY_SIZE,
W
wKyrong 已提交
146
    value: huks.HuksKeySize.HUKS_AES_KEY_SIZE_256
J
jianjew 已提交
147 148 149 150
};
properties[2] = {
    tag: huks.HuksTag.HUKS_TAG_PURPOSE,
    value:
W
wKyrong 已提交
151
    huks.HuksKeyPurpose.HUKS_KEY_PURPOSE_ENCRYPT | huks.HuksKeyPurpose.HUKS_KEY_PURPOSE_DECRYPT
J
jianjew 已提交
152 153
};
let options = {
W
wKyrong 已提交
154 155
    properties: properties,
    inData: plainTextSize32
J
jianjew 已提交
156
};
W
wKyrong 已提交
157 158 159 160

/*
 * 导入密钥
 */
J
jianjew 已提交
161
try {
W
wKyrong 已提交
162
    huks.importKeyItem(keyAlias, options, function (error, data) {
J
jianjew 已提交
163
        if (error) {
W
wKyrong 已提交
164
            console.error(`callback: importKeyItem failed, code: ${error.code}, msg: ${error.message}`);
J
jianjew 已提交
165
        } else {
W
wKyrong 已提交
166
            console.info(`callback: importKeyItem success`);
J
jianjew 已提交
167 168 169
        }
    });
} catch (error) {
W
wKyrong 已提交
170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207
    console.error(`callback: importKeyItem input arg invalid, code: ${error.code}, msg: ${error.message}`);
}
```

**调测验证**

验证时查询密钥是否存在,如密钥存在即表示生成密钥成功。

**代码示例:**

```ts
import huks from '@ohos.security.huks';

let keyAlias = 'AES256Alias_sample';
let isKeyExist;

let keyProperties = new Array();
keyProperties[0] = {
    tag: huks.HuksTag.HUKS_TAG_ALGORITHM,
    value: huks.HuksKeyAlg.HUKS_ALG_AES,
}
let huksOptions = {
    properties: keyProperties, // 非空填充
    inData: new Uint8Array(new Array()) // 非空填充
}
try {
    huks.isKeyItemExist(keyAlias, huksOptions, function (error, data) {
        if (error) {
            console.error(`callback: isKeyItemExist failed, code: ${error.code}, msg: ${error.message}`);
        } else {
            if (data !== null && data.valueOf() !== null) {
                isKeyExist = data.valueOf();
                console.info(`callback: isKeyItemExist success, isKeyExist = ${isKeyExist}`);
            }
        }
    });
} catch (error) {
    console.error(`callback: isKeyItemExist input arg invalid, code: ${error.code}, msg: ${error.message}`);
J
jianjew 已提交
208 209 210
}
```

W
wKyrong 已提交
211
### 加密导入
J
jianjew 已提交
212

W
wKyrong 已提交
213
相比明文导入,加密导入步骤更多,密钥材料更复杂,此章节将展示开发过程中关键的开发流程和密钥材料数据结构。下图是加密导入的基本开发流程。
J
jianjew 已提交
214

Z
zhangcheng 已提交
215

216

W
wKyrong 已提交
217
**图2** 加密导入开发流程
Z
zhangcheng 已提交
218

W
wKyrong 已提交
219
![huks_import_wrapped_key](figures/huks_import_wrapped_key.png)
Z
zhangcheng 已提交
220 221


222 223


W
wKyrong 已提交
224
**接口说明**
225

W
wKyrong 已提交
226 227 228 229 230 231 232
根据开发流程,在导入加密密钥过程中,需要依次调用HUKS的生成密钥、导出公钥、导入加密密钥、删除密钥接口。
| 接口名                      | 描述                 |
| -------------------------------------- | ----------------------------|
|generateKeyItem(keyAlias: string, options: HuksOptions, callback: AsyncCallback\<void>) : void| 生成新密钥|
|exportKeyItem(keyAlias: string, options: HuksOptions, callback: AsyncCallback<HuksReturnResult>) : void| 导出密钥对的公钥|
|importWrappedKeyItem(keyAlias: string, wrappingKeyAlias: string, options: HuksOptions, callback: AsyncCallback<void>) : void|导入加密密钥|
|deleteKeyItem(keyAlias: string, options: HuksOptions, callback: AsyncCallback<void>) : void|删除密钥|
233

W
wKyrong 已提交
234 235 236
需要注意的是,导出密钥接口返回的公钥明文材料是按照**X.509**格式封装,导入加密密钥接口中的密钥材料需满足**Length<sub>Data</sub>-Data** 的格式封装。具体,应用需要申请一个Uint8Array按照以下表格中的顺序依次封装。

**表2** 加密密钥材料格式
237

G
gaoshuyang 已提交
238
| 内容 | 业务公钥长度L<sub>pk2</sub> | 业务公钥pk2 | k2加密参数AAD2长度L<sub>AAD2</sub> | k2加密参数AAD2 |  k2加密参数Nonce2长度L<sub>Nonce2</sub> | k2加密参数Nonce2 |
W
wKyrong 已提交
239 240
| :--: |:----:|:----: |:----: | :----:  | :----:|:----:|
|长度| 4字节 |L<sub>pk2</sub>字节| 4字节 | L<sub>AAD2</sub>字节 | 4字节 | L<sub>Nonce2</sub>字节 |
G
gaoshuyang 已提交
241
| 内容 | k2加密参数AEAD2长度L<sub>AEAD2</sub> | k2加密参数AEAD2 | k3密文长度L<sub>k3_enc</sub> | k3密文k3_enc |  k3加密参数AAD3长度L<sub>AAD3</sub> | k3加密参数AAD3 |
W
wKyrong 已提交
242
|长度| 4字节 |L<sub>AEAD2</sub>字节| 4字节 | L<sub>k3_enc</sub>字节 | 4字节 | L<sub>AAD3</sub>字节 |
G
gaoshuyang 已提交
243
| 内容| k3加密参数Nonce3长度L<sub>Nonce3</sub> | k3加密参数Nonce3 | k3加密参数AEAD3长度L<sub>AEAD3</sub> | k3加密参数AEAD3 |  **密钥明文材料长度** 的长度L<sub>k1'_size</sub> | 密钥明文材料长度k1'_size |
W
wKyrong 已提交
244 245 246
|长度| 4字节 |L<sub>Nonce3</sub>字节| 4字节 | L<sub>AEAD3</sub>字节 | 4字节 | L<sub>k1'_size</sub>字节 |
|内容|k1'密文长度L<sub>k1'_enc</sub>| k1'密文k1'_enc| | | | |
|长度| 4字节 |L<sub>k1'_enc</sub>字节| | | | |
Z
zhangcheng 已提交
247

W
wKyrong 已提交
248
**开发步骤**
Z
zhangcheng 已提交
249

W
wKyrong 已提交
250 251 252 253 254 255 256
这里主要展示涉及调用HUKS的开发样例(使用ECDH密钥协商套件),部分在业务本地执行的步骤不在这里展示详细样例。
1. 转换成HUKS格式的密钥材料
2. 生成加密导入用途的密钥
3. 导出公钥材料
4. 封装加密导入密钥材料
5. 导入封装的加密密钥材料
6. 删除用于加密导入的密钥
Z
zhangcheng 已提交
257

W
wKyrong 已提交
258
**代码示例:**
Z
zhangcheng 已提交
259

Z
zhangcheng 已提交
260
```ts
W
wKyrong 已提交
261 262 263
/*
 * 以下以SM2密钥的Callback操作验证为例
 */
Z
zhangcheng 已提交
264 265
import huks from '@ohos.security.huks';

W
wKyrong 已提交
266 267 268 269 270 271
/*
 * 确定密钥别名
 */
let importAlias = "importAlias";
let wrapAlias = "wrappingKeyAlias";
let exportKey;
Z
zhangcheng 已提交
272

W
wKyrong 已提交
273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291
/*
 * 加密导入用途的密钥材料原文:转换成HUKS ECC-P-256密钥对格式的密钥材料
 */
let inputEccPair = new Uint8Array([
    0x02, 0x00, 0x00, 0x00, // 密钥算法:huks.HuksKeyAlg.HUKS_ALG_ECC = 2
    0x00, 0x01, 0x00, 0x00, // 密钥大小(比特):256
    0x20, 0x00, 0x00, 0x00, // 坐标x长度(字节):32
    0x20, 0x00, 0x00, 0x00, // 坐标y长度(字节):32
    0x20, 0x00, 0x00, 0x00, // 坐标z长度(字节):32
    // 坐标x
    0xa5, 0xb8, 0xa3, 0x78, 0x1d, 0x6d, 0x76, 0xe0, 0xb3, 0xf5, 0x6f, 0x43, 0x9d, 0xcf, 0x60, 0xf6,
    0x0b, 0x3f, 0x64, 0x45, 0xa8, 0x3f, 0x1a, 0x96, 0xf1, 0xa1, 0xa4, 0x5d, 0x3e, 0x2c, 0x3f, 0x13,
    // 坐标y
    0xd7, 0x81, 0xf7, 0x2a, 0xb5, 0x8d, 0x19, 0x3d, 0x9b, 0x96, 0xc7, 0x6a, 0x10, 0xf0, 0xaa, 0xbc,
    0x91, 0x6f, 0x4d, 0xa7, 0x09, 0xb3, 0x57, 0x88, 0x19, 0x6f, 0x00, 0x4b, 0xad, 0xee, 0x34, 0x35,
    // 坐标z
    0xfb, 0x8b, 0x9f, 0x12, 0xa0, 0x83, 0x19, 0xbe, 0x6a, 0x6f, 0x63, 0x2a, 0x7c, 0x86, 0xba, 0xca,
    0x64, 0x0b, 0x88, 0x96, 0xe2, 0xfa, 0x77, 0xbc, 0x71, 0xe3, 0x0f, 0x0f, 0x9e, 0x3c, 0xe5, 0xf9
    ]);
Z
zhangcheng 已提交
292

W
wKyrong 已提交
293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321
/*
 * 封装密钥属性参数集
 */
// 生成加密导入用途的密钥的属性集
let properties = new Array();
properties[0] = {
    tag: huks.HuksTag.HUKS_TAG_ALGORITHM,
    value: huks.HuksKeyAlg.HUKS_ALG_ECC
};
properties[1] = {
    tag: huks.HuksTag.HUKS_TAG_KEY_SIZE,
    value: huks.HuksKeySize.HUKS_ECC_KEY_SIZE_256
};
properties[2] = {
    tag: huks.HuksTag.HUKS_TAG_PURPOSE,
    value: huks.HuksKeyPurpose.HUKS_KEY_PURPOSE_UNWRAP
};
properties[3] = {
    tag: huks.HuksTag.HUKS_TAG_DIGEST,
    value: huks.HuksKeyDigest.HUKS_DIGEST_SHA256
};
properties[4] = {
    tag: huks.HuksTag.HUKS_TAG_IMPORT_KEY_TYPE,
    value: huks.HuksImportKeyType.HUKS_KEY_TYPE_KEY_PAIR,
};
let huksOptions = {
    properties: properties,
    inData: inputEccPair
};
Z
zhangcheng 已提交
322

W
wKyrong 已提交
323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352
// 待导入密钥的属性集:AES256
let importProperties = new Array();
importProperties[0] = {
    tag: huks.HuksTag.HUKS_TAG_ALGORITHM,
    value: huks.HuksKeyAlg.HUKS_ALG_AES
};
importProperties[1] = {
    tag: huks.HuksTag.HUKS_TAG_KEY_SIZE,
    value: huks.HuksKeySize.HUKS_AES_KEY_SIZE_256
};
importProperties[2] = {
    tag: huks.HuksTag.HUKS_TAG_PURPOSE,
    value: huks.HuksKeyPurpose.HUKS_KEY_PURPOSE_ENCRYPT | huks.HuksKeyPurpose.HUKS_KEY_PURPOSE_DECRYPT
};
importProperties[3] = {
    tag: huks.HuksTag.HUKS_TAG_BLOCK_MODE,
    value: huks.HuksCipherMode.HUKS_MODE_CBC
};
importProperties[4] = {
    tag: huks.HuksTag.HUKS_TAG_PADDING,
    value: huks.HuksKeyPadding.HUKS_PADDING_NONE
};
importProperties[5] = {
    tag: huks.HuksTag.HUKS_TAG_UNWRAP_ALGORITHM_SUITE,
    value: huks.HuksUnwrapSuite.HUKS_UNWRAP_SUITE_ECDH_AES_256_GCM_NOPADDING // 使用“ECDH+AES256GCM”加密导入套件
};
let importOptions = {
    properties: importProperties,
    inData: new Uint8Array(new Array())
};
Z
zhangcheng 已提交
353

W
wKyrong 已提交
354 355
// 导出加密导入用途的公钥
function exportKeyItem(keyAlias:string, huksOptions:huks.HuksOptions, throwObject) : Promise<huks.HuksReturnResult> {
Z
zhangcheng 已提交
356 357
    return new Promise((resolve, reject) => {
        try {
W
wKyrong 已提交
358
            huks.exportKeyItem(keyAlias, huksOptions, function (error, data) {
Z
zhangcheng 已提交
359 360 361 362 363 364 365
                if (error) {
                    reject(error);
                } else {
                    resolve(data);
                }
            });
        } catch (error) {
W
wKyrong 已提交
366 367
            throwObject.isThrow = true;
            throw(error);
Z
zhangcheng 已提交
368 369 370 371
        }
    });
}

W
wKyrong 已提交
372
async function publicExportKeyFunc(keyAlias:string, huksOptions:huks.HuksOptions) {
Z
zhangcheng 已提交
373
    console.info(`enter callback export`);
W
wKyrong 已提交
374
    let throwObject = {isThrow: false};
Z
zhangcheng 已提交
375
    try {
W
wKyrong 已提交
376 377
        await exportKeyItem(keyAlias, huksOptions, throwObject)
            .then ((data) => {
Z
zhangcheng 已提交
378
                console.info(`callback: exportKeyItem success, data = ${JSON.stringify(data)}`);
W
wKyrong 已提交
379
                exportKey = data.outData;
Z
zhangcheng 已提交
380 381
            })
            .catch(error => {
W
wKyrong 已提交
382 383 384 385 386
                if (throwObject.isThrow) {
                    throw(error);
                } else {
                    console.error(`callback: exportKeyItem failed, code: ${error.code}, msg: ${error.message}`);
                }
Z
zhangcheng 已提交
387 388 389 390 391 392
            });
    } catch (error) {
        console.error(`callback: exportKeyItem input arg invalid, code: ${error.code}, msg: ${error.message}`);
    }
}

W
wKyrong 已提交
393 394
// 此处用导入密钥来模拟“生成加密导入用途的密钥”
function importKeyItem(keyAlias:string, huksOptions:huks.HuksOptions, throwObject) {
Z
zhangcheng 已提交
395 396
    return new Promise((resolve, reject) => {
        try {
W
wKyrong 已提交
397
            huks.importKeyItem(keyAlias, huksOptions, function (error, data) {
Z
zhangcheng 已提交
398 399
                if (error) {
                    reject(error);
W
wKyrong 已提交
400
                } else {
Z
zhangcheng 已提交
401 402 403 404
                    resolve(data);
                }
            });
        } catch (error) {
W
wKyrong 已提交
405 406
            throwObject.isThrow = true;
            throw(error);
Z
zhangcheng 已提交
407 408 409 410
        }
    });
}

W
wKyrong 已提交
411
async function publicImportKeyFunc(keyAlias:string, huksOptions:huks.HuksOptions) {
Z
zhangcheng 已提交
412
    console.info(`enter promise importKeyItem`);
W
wKyrong 已提交
413
    let throwObject = {isThrow: false};
Z
zhangcheng 已提交
414
    try {
W
wKyrong 已提交
415 416
        await importKeyItem(keyAlias, huksOptions, throwObject)
            .then ((data) => {
Z
zhangcheng 已提交
417 418 419
                console.info(`callback: importKeyItem success, data = ${JSON.stringify(data)}`);
            })
            .catch(error => {
W
wKyrong 已提交
420 421 422 423 424
                if (throwObject.isThrow) {
                    throw(error);
                } else {
                    console.error(`callback: importKeyItem failed, code: ${error.code}, msg: ${error.message}`);
                }
Z
zhangcheng 已提交
425 426 427 428 429 430
            });
    } catch (error) {
        console.error(`callback: importKeyItem input arg invalid, code: ${error.code}, msg: ${error.message}`);
    }
}

W
wKyrong 已提交
431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452
// 执行加密导入
async function publicImportWrappedKey(keyAlias:string, wrappingKeyAlias:string, huksOptions:huks.HuksOptions) {
    console.info(`enter callback importWrappedKeyItem`);
    var throwObject = {isThrow: false};
    try {
        await importWrappedKeyItem(keyAlias, wrappingKeyAlias, huksOptions, throwObject)
            .then ((data) => {
                console.info(`callback: importWrappedKeyItem success, data = ${JSON.stringify(data)}`);
            })
            .catch(error => {
                if (throwObject.isThrow) {
                    throw(error);
                } else {
                    console.error(`callback: importWrappedKeyItem failed, code: ${error.code}, msg: ${error.message}`);
                }
            });
    } catch (error) {
        console.error(`callback: importWrappedKeyItem input arg invalid, code: ${error.code}, msg: ${error.message}`);
    }
}

function importWrappedKeyItem(keyAlias:string, wrappingKeyAlias:string, huksOptions:huks.HuksOptions, throwObject) {
Z
zhangcheng 已提交
453 454
    return new Promise((resolve, reject) => {
        try {
W
wKyrong 已提交
455
            huks.importWrappedKeyItem(keyAlias, wrappingKeyAlias, huksOptions, function (error, data) {
Z
zhangcheng 已提交
456 457 458
                if (error) {
                    reject(error);
                } else {
W
wKyrong 已提交
459
                    resolve(data);
Z
zhangcheng 已提交
460 461 462
                }
            });
        } catch (error) {
W
wKyrong 已提交
463 464
            throwObject.isThrow = true;
            throw(error);
Z
zhangcheng 已提交
465 466 467 468
        }
    });
}

W
wKyrong 已提交
469 470
// 删除加密导入用途的密钥
function deleteKeyItem(keyAlias:string, huksOptions:huks.HuksOptions, throwObject) {
Z
zhangcheng 已提交
471 472 473 474 475 476 477 478 479 480
    return new Promise((resolve, reject) => {
        try {
            huks.deleteKeyItem(keyAlias, huksOptions, function (error, data) {
                if (error) {
                    reject(error);
                } else {
                    resolve(data);
                }
            });
        } catch (error) {
W
wKyrong 已提交
481 482
            throwObject.isThrow = true;
            throw(error);
Z
zhangcheng 已提交
483 484 485 486
        }
    });
}

W
wKyrong 已提交
487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503
async function publicDeleteKeyFunc(keyAlias:string, huksOptions:huks.HuksOptions) {
    console.info(`enter callback deleteKeyItem`);
    let throwObject = {isThrow: false};
    try {
        await deleteKeyItem(keyAlias, huksOptions, throwObject)
            .then ((data) => {
                console.info(`callback: deleteKeyItem key success, data = ${JSON.stringify(data)}`);
            })
            .catch(error => {
                if (throwObject.isThrow) {
                    throw(error);
                } else {
                    console.error(`callback: deleteKeyItem failed, code: ${error.code}, msg: ${error.message}`);
                }
            });
    } catch (error) {
        console.error(`callback: deletKeeyItem input arg invalid, code: ${error.code}, msg: ${error.message}`);
Z
zhangcheng 已提交
504
    }
W
wKyrong 已提交
505
}
Z
zhangcheng 已提交
506

W
wKyrong 已提交
507 508 509 510 511 512
async function ImportWrappedKeyNormalTest() {
    console.info(`enter ImportWrapKey test`);
    /*
     * 生成加密导入用途的密钥(此处使用导入进行模拟)
     */
    await publicImportKeyFunc(wrapAlias, huksOptions);
Z
zhangcheng 已提交
513

W
wKyrong 已提交
514 515 516 517
    /*
     * 导出加密导入用途密钥的公钥材料
     */
    await publicExportKeyFunc(wrapAlias, huksOptions);
Z
zhangcheng 已提交
518

W
wKyrong 已提交
519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579
    /*----------------------------------------------------------------------------------------------
     * 此处省略业务本地生成ECC密钥对、业务本地ECDH密钥协商、业务本地生成密钥加密密钥K3、业务本地加密K1'和K3的流程
     *----------------------------------------------------------------------------------------------*/

    /* 封装加密导入密钥材料:参考加密导入
     * 拼接importOptions.inData字段,满足以下格式:
     * PK2长度(4字节)     + PK2的数据     + AAD2的长度(4字节) + AAD2的数据 +
     * Nonce2的长度(4字节)+ Nonce2的数据  + AEAD2的长度(4字节) + AEAD2的数据 +
     * K3密文的长度(4字节) + K3密文的数据  + AAD3的长度(4字节) + AAD3的数据 +
     * Nonce3的长度(4字节) + Nonce3的数据  + AEAD3的长度(4字节) + AEAD3的数据 +
     * K1'_size的长度(4字节) + K1'_size   + K1'_enc的长度(4字节) + K1'_enc的数据
     */
    let inputKey = new Uint8Array([
        0x5b, 0x00, 0x00, 0x00, // ECC-P-256 公钥长度(X.509规范DER格式):91
        // ECC-P-256 公钥
        0x30, 0x59, 0x30, 0x13, 0x06, 0x07, 0x2a, 0x86, 0x48, 0xce, 0x3d, 0x02, 0x01, 0x06, 0x08, 0x2a,
        0x86, 0x48, 0xce, 0x3d, 0x03, 0x01, 0x07, 0x03, 0x42, 0x00, 0x04, 0xc0, 0xfe, 0x1c, 0x67, 0xde,
        0x86, 0x0e, 0xfb, 0xaf, 0xb5, 0x85, 0x52, 0xb4, 0x0e, 0x1f, 0x6c, 0x6c, 0xaa, 0xc5, 0xd9, 0xd2,
        0x4d, 0xb0, 0x8a, 0x72, 0x24, 0xa1, 0x99, 0xaf, 0xfc, 0x3e, 0x55, 0x5a, 0xac, 0x99, 0x3d, 0xe8,
        0x34, 0x72, 0xb9, 0x47, 0x9c, 0xa6, 0xd8, 0xfb, 0x00, 0xa0, 0x1f, 0x9f, 0x7a, 0x41, 0xe5, 0x44,
        0x3e, 0xb2, 0x76, 0x08, 0xa2, 0xbd, 0xe9, 0x41, 0xd5, 0x2b, 0x9e,

        0x10, 0x00, 0x00, 0x00, // AAD2长度:16
        // AAD2
        0xbf, 0xf9, 0x69, 0x41, 0xf5, 0x49, 0x85, 0x31, 0x35, 0x14, 0x69, 0x12, 0x57, 0x9c, 0xc8, 0xb7,

        0x10, 0x00, 0x00, 0x00, // Nonce2长度:16
        // Nonce2
        0x2d, 0xb7, 0xf1, 0x5a, 0x0f, 0xb8, 0x20, 0xc5, 0x90, 0xe5, 0xca, 0x45, 0x84, 0x5c, 0x08, 0x08,

        0x10, 0x00, 0x00, 0x00, // AEAD2长度:16
        // AEAD2
        0x43, 0x25, 0x1b, 0x2f, 0x5b, 0x86, 0xd8, 0x87, 0x04, 0x4d, 0x38, 0xc2, 0x65, 0xcc, 0x9e, 0xb7,

        0x20, 0x00, 0x00, 0x00, // K3密文长度:32
        // K3密文
        0xf4, 0xe8, 0x93, 0x28, 0x0c, 0xfa, 0x4e, 0x11, 0x6b, 0xe8, 0xbd, 0xa8, 0xe9, 0x3f, 0xa7, 0x8f,
        0x2f, 0xe3, 0xb3, 0xbf, 0xaf, 0xce, 0xe5, 0x06, 0x2d, 0xe6, 0x45, 0x5d, 0x19, 0x26, 0x09, 0xe7,

        0x10, 0x00, 0x00, 0x00, // AAD3长度:16
        // AAD3
        0xf4, 0x1e, 0x7b, 0x01, 0x7a, 0x84, 0x36, 0xa4, 0xa8, 0x1c, 0x0d, 0x3d, 0xde, 0x57, 0x66, 0x73,

        0x10, 0x00, 0x00, 0x00, // Nonce3长度:16
        // Nonce3
        0xe3, 0xff, 0x29, 0x97, 0xad, 0xb3, 0x4a, 0x2c, 0x50, 0x08, 0xb5, 0x68, 0xe1, 0x90, 0x5a, 0xdc,

        0x10, 0x00, 0x00, 0x00, // AEAD3长度:16
        // AEAD3
        0x26, 0xae, 0xdc, 0x4e, 0xa5, 0x6e, 0xb1, 0x38, 0x14, 0x24, 0x47, 0x1c, 0x41, 0x89, 0x63, 0x11,

        0x04, 0x00, 0x00, 0x00, // “密钥明文材料长度”的长度(字节):4
        // 密钥明文材料的长度:32字节
        0x20, 0x00, 0x00, 0x00,

        0x20, 0x00, 0x00, 0x00, // 待导入密钥密文长度(字节):32
        // 待导入密钥密文
        0x0b, 0xcb, 0xa9, 0xa8, 0x5f, 0x5a, 0x9d, 0xbf, 0xa1, 0xfc, 0x72, 0x74, 0x87, 0x79, 0xf2, 0xf4,
        0x22, 0x0c, 0x8a, 0x4d, 0xd8, 0x7e, 0x10, 0xc8, 0x44, 0x17, 0x95, 0xab, 0x3b, 0xd2, 0x8f, 0x0a
    ]);
    importOptions.inData = inputKey;
Z
zhangcheng 已提交
580

W
wKyrong 已提交
581 582 583 584
    /*
     * 导入封装的加密密钥材料
     */
    await publicImportWrappedKey(importAlias, wrapAlias, importOptions);
Z
zhangcheng 已提交
585

W
wKyrong 已提交
586 587 588 589
    /*
     * 删除用于加密导入的密钥
     */
    await publicDeleteKeyFunc(wrapAlias, huksOptions);
Z
zhangcheng 已提交
590
}
W
wKyrong 已提交
591
```
Z
zhangcheng 已提交
592

W
wKyrong 已提交
593
**调测验证**
Z
zhangcheng 已提交
594

W
wKyrong 已提交
595
验证时查询密钥是否存在,如密钥存在即表示生成密钥成功。
Z
zhangcheng 已提交
596

W
wKyrong 已提交
597
**代码示例:**
Z
zhangcheng 已提交
598

W
wKyrong 已提交
599 600
```ts
import huks from '@ohos.security.huks';
Z
zhangcheng 已提交
601

W
wKyrong 已提交
602 603 604 605 606
/*
 * 确定密钥别名和封装密钥属性参数集
 */
let keyAlias = 'importAlias';
let isKeyExist;
Z
zhangcheng 已提交
607

W
wKyrong 已提交
608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625
let keyProperties = new Array();
keyProperties[0] = {
    tag: huks.HuksTag.HUKS_TAG_ALGORITHM,
    value: huks.HuksKeyAlg.HUKS_ALG_AES,
}
let huksOptions = {
    properties: keyProperties, // 非空填充
    inData: new Uint8Array(new Array()) // 非空填充
}
try {
    huks.isKeyItemExist(keyAlias, huksOptions, function (error, data) {
        if (error) {
            console.error(`callback: isKeyItemExist failed, code: ${error.code}, msg: ${error.message}`);
        } else {
            if (data !== null && data.valueOf() !== null) {
                isKeyExist = data.valueOf();
                console.info(`callback: isKeyItemExist success, isKeyExist = ${isKeyExist}`);
            }
Z
zhangcheng 已提交
626
        }
W
wKyrong 已提交
627 628 629
    });
} catch (error) {
    console.error(`callback: isKeyItemExist input arg invalid, code: ${error.code}, msg: ${error.message}`);
Z
zhangcheng 已提交
630
}
Z
zhangcheng 已提交
631 632 633
```


W
wKyrong 已提交
634
## 常见密钥操作
Z
zhangcheng 已提交
635

W
wKyrong 已提交
636
**场景概述**
Z
zhangcheng 已提交
637

W
wKyrong 已提交
638
为了实现对数据机密性、完整性等保护,在生成/导入密钥后,需要对数据进行密钥操作,比如加密解密、签名验签、密钥协商、密钥派生等,本章节提供了常用的密钥操作的示例。本章节提供的示例都没有设置二次身份访问控制,如设置了密钥访问控制请参考[密钥访问控制](#密钥访问控制)用法。
639

W
wKyrong 已提交
640
**通用开发流程**
641

W
wKyrong 已提交
642 643 644 645
HUKS基于密钥会话来操作数据,使用密钥时基于以下流程:
1. **初始化密钥会话[huks.initSession()](../reference/apis/js-apis-huks.md#huksinitsession9):** 传入密钥别名和密钥操作参数,初始化一个密钥会话并获取会话句柄。其中密钥操作参数中必须包含对应密码算法所必须的参数,包括密码算法、密钥大小、密钥目的、工作模式、填充模式、散列模式、IV、Nonce、AAD等。如果密钥设置了访问控制属性,还需要其他参数具体[密钥访问控制](#密钥访问控制)。此步骤必选!
2. **分段操作数据[huks.updateSession()](../reference/apis/js-apis-huks.md#huksupdatesession9):** 如数据过大(超过100K)或密码算法的要求需要对数据进行分段操作,反之可跳过此步。此步骤可选!
3. **结束密钥会话[huks.finishSession()](../reference/apis/js-apis-huks.md#huksfinishsession9):** 操作最后一段数据并结束密钥会话,如过程中发生错误或不需要此次密钥操作数据,必须取消会话[huks.abortSession()](../reference/apis/js-apis-huks.md#huksabortsession9)。此步骤必选!
646

W
wKyrong 已提交
647 648 649
### 加密解密
```ts
/*
G
gaoshuyang 已提交
650
 * 以下以AES 128密钥的Callback操作使用为例
W
wKyrong 已提交
651 652
 */
import huks from '@ohos.security.huks';
G
gaoshuyang 已提交
653
import promptAction from '@ohos.promptAction';
W
wKyrong 已提交
654

Z
zhangcheng 已提交
655

G
gaoshuyang 已提交
656 657 658 659 660 661
let aesKeyAlias = 'test_aesKeyAlias';
let handle;
let plainText = '123456';
let IV = '001122334455';
let cipherData:Uint8Array;
let plainData:Uint8Array;
Z
zhangcheng 已提交
662

W
wKyrong 已提交
663
function StringToUint8Array(str) {
G
gaoshuyang 已提交
664 665 666 667 668
  let arr = [];
  for (let i = 0, j = str.length; i < j; ++i) {
    arr.push(str.charCodeAt(i));
  }
  return new Uint8Array(arr);
W
wKyrong 已提交
669
}
Z
zhangcheng 已提交
670

W
wKyrong 已提交
671
function Uint8ArrayToString(fileData) {
G
gaoshuyang 已提交
672 673 674 675 676
  let dataString = '';
  for (let i = 0; i < fileData.length; i++) {
    dataString += String.fromCharCode(fileData[i]);
  }
  return dataString;
W
wKyrong 已提交
677
}
Z
zhangcheng 已提交
678

G
gaoshuyang 已提交
679 680 681 682
function GetAesGenerateProperties() {
  var properties = new Array();
  var index = 0;
  properties[index++] = {
W
wKyrong 已提交
683
    tag: huks.HuksTag.HUKS_TAG_ALGORITHM,
G
gaoshuyang 已提交
684 685 686
    value: huks.HuksKeyAlg.HUKS_ALG_AES
  };
  properties[index++] = {
W
wKyrong 已提交
687
    tag: huks.HuksTag.HUKS_TAG_KEY_SIZE,
G
gaoshuyang 已提交
688 689 690 691 692 693 694 695
    value: huks.HuksKeySize.HUKS_AES_KEY_SIZE_128
  };
  properties[index++] = {
    tag: huks.HuksTag.HUKS_TAG_PURPOSE,
    value: huks.HuksKeyPurpose.HUKS_KEY_PURPOSE_ENCRYPT |
           huks.HuksKeyPurpose.HUKS_KEY_PURPOSE_DECRYPT
  }
  return properties;
W
wKyrong 已提交
696
}
Z
zhangcheng 已提交
697

G
gaoshuyang 已提交
698 699 700 701
function GetAesEncryptProperties() {
  var properties = new Array();
  var index = 0;
  properties[index++] = {
W
wKyrong 已提交
702
    tag: huks.HuksTag.HUKS_TAG_ALGORITHM,
G
gaoshuyang 已提交
703 704 705
    value: huks.HuksKeyAlg.HUKS_ALG_AES
  };
  properties[index++] = {
W
wKyrong 已提交
706
    tag: huks.HuksTag.HUKS_TAG_KEY_SIZE,
G
gaoshuyang 已提交
707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725
    value: huks.HuksKeySize.HUKS_AES_KEY_SIZE_128
  };
  properties[index++] = {
    tag: huks.HuksTag.HUKS_TAG_PURPOSE,
    value: huks.HuksKeyPurpose.HUKS_KEY_PURPOSE_ENCRYPT
  }
  properties[index++] = {
    tag: huks.HuksTag.HUKS_TAG_PADDING,
    value: huks.HuksKeyPadding.HUKS_PADDING_PKCS7
  }
  properties[index++] = {
    tag: huks.HuksTag.HUKS_TAG_BLOCK_MODE,
    value: huks.HuksCipherMode.HUKS_MODE_CBC
  }
  properties[index++] = {
    tag: huks.HuksTag.HUKS_TAG_IV,
    value: StringToUint8Array(IV)
  }
  return properties;
W
wKyrong 已提交
726
}
Z
zhangcheng 已提交
727

G
gaoshuyang 已提交
728 729 730 731
function GetAesDecryptProperties() {
  var properties = new Array();
  var index = 0;
  properties[index++] = {
W
wKyrong 已提交
732
    tag: huks.HuksTag.HUKS_TAG_ALGORITHM,
G
gaoshuyang 已提交
733 734 735
    value: huks.HuksKeyAlg.HUKS_ALG_AES
  };
  properties[index++] = {
W
wKyrong 已提交
736
    tag: huks.HuksTag.HUKS_TAG_KEY_SIZE,
G
gaoshuyang 已提交
737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780
    value: huks.HuksKeySize.HUKS_AES_KEY_SIZE_128
  };
  properties[index++] = {
    tag: huks.HuksTag.HUKS_TAG_PURPOSE,
    value: huks.HuksKeyPurpose.HUKS_KEY_PURPOSE_DECRYPT
  }
  properties[index++] = {
    tag: huks.HuksTag.HUKS_TAG_PADDING,
    value: huks.HuksKeyPadding.HUKS_PADDING_PKCS7
  }
  properties[index++] = {
    tag: huks.HuksTag.HUKS_TAG_BLOCK_MODE,
    value: huks.HuksCipherMode.HUKS_MODE_CBC
  }
  properties[index++] = {
    tag: huks.HuksTag.HUKS_TAG_IV,
    value: StringToUint8Array(IV)
  }
  return properties;
}

async function GenerateAesKey() {
  var genProperties = GetAesGenerateProperties();
  var options = {
    properties: genProperties
  }
  await huks.generateKeyItem(aesKeyAlias, options).then((data) => {
    promptAction.showToast({
      message: "成功生成了 一个 AES 密钥",
      duration: 2500,
    })
  }).catch((err)=>{
    promptAction.showToast({
      message: "密钥生成失败,错误码是: " + err.code + " 错误吗信息: " + err.message,
      duration: 6500,
    })
  })
}

async function EncryptData() {
    var encryptProperties = GetAesEncryptProperties();
    var options = {
        properties:encryptProperties,
        inData: StringToUint8Array(plainText)
Z
zhangcheng 已提交
781
    }
G
gaoshuyang 已提交
782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903
    await huks.initSession(aesKeyAlias, options).then((data) => {
      handle = data.handle;
    }).catch((err)=>{
      promptAction.showToast({
        message: "密钥初始化失败,错误码是: " + err.code + " 错误吗信息: " + err.message,
        duration: 6500,
      })
    })
    await huks.finishSession(handle, options).then((data) => {
      promptAction.showToast({
        message: "加密数据成功, 密文是: " + Uint8ArrayToString(data.outData),
        duration: 6500,
      })
      cipherData = data.outData
    }).catch((err)=>{
      promptAction.showToast({
        message: "加密流程捕获了异常,错误码是: " + err.code + " 错误码信息: " + err.message,
        duration: 6500,
      })
    })
}

async function DecryptData() {
   var decryptOptions = GetAesDecryptProperties()
   var options = {
     properties:decryptOptions,
     inData: cipherData
   }
  await huks.initSession(aesKeyAlias, options).then((data) => {
    handle = data.handle;
  }).catch((err)=>{
    promptAction.showToast({
      message: "密钥初始化失败,错误码是: " + err.code + " 错误吗信息: " + err.message,
      duration: 6500,
    })
  })
  await huks.finishSession(handle, options).then((data) => {
    promptAction.showToast({
      message: "解密成功, 解密的明文是: " + Uint8ArrayToString(data.outData),
      duration: 6500,
    })
  }).catch((err)=>{
    promptAction.showToast({
      message: "解密流程捕获了异常,错误码是: " + err.code + " 错误码信息: " + err.message,
      duration: 6500,
    })
  })
}

async function DeleteKey() {
  let emptyOptions = {
    properties:[]
  }
    await huks.deleteKeyItem(aesKeyAlias, emptyOptions).then((data) => {
      promptAction.showToast({
        message: "密钥删除成功!",
        duration: 6500,
      })
    }).catch((err)=>{
      promptAction.showToast({
        message: "密钥删除失败,错误码是: " + err.code + " 错误吗信息: " + err.message,
        duration: 6500,
      })
    })
}

@Entry
@Component
struct Index {
  @State message: string = 'Hello Huks'
  controller: TextInputController = new TextInputController();
  build() {
    Column() {
      Row() {
        Text('输入您要加密得内容').fontSize(20).margin({ left: 2, top: 10 })
      }

      Row() {
        TextInput({ placeholder: '默认加密123456', controller: this.controller })
          .placeholderColor(Color.Grey)
          .placeholderFont({ size: 14, weight: 400 })
          .caretColor(Color.Blue)
          .width(400)
          .height(40)
          .margin(20)
          .fontSize(14)
          .fontColor(Color.Black)
          .type(InputType.Normal)
          .onChange((value: string) => {
            this.message += '您输入得明文是: ' + value + '\n'
            plainText = value
          })
          .margin({ top: 10 })
      }

      Row() {
        Text('加密或解密的结果').fontSize(20).margin({ left: 2, top: 10 })
      }

      Row() {
        TextInput({ placeholder: '这里将会显示加解密的结果', controller: this.controller })
          .placeholderColor(Color.Grey)
          .placeholderFont({ size: 14, weight: 400 })
          .caretColor(Color.Blue)
          .width(400)
          .height(40)
          .margin(20)
          .fontSize(14)
          .fontColor(Color.Black)
          .type(InputType.Normal)
          .onChange((value: string) => {
            this.message += '您输入得明文是: ' + value + '\n'
            plainText = value
          })
          .margin({ top: 10 })
      }

      Row() {
        Button({ type: ButtonType.Normal, stateEffect: true }) {
          Text('generateAesKey')
            .fontColor(Color.White)
            .fontSize(20)
Z
zhangcheng 已提交
904
        }
G
gaoshuyang 已提交
905 906 907 908 909 910 911 912 913 914 915 916 917
        .borderRadius(8)
        .width('45%')
        .height('5%')
        .backgroundColor(0x317aff)
        .onClick(() => {
          GenerateAesKey()
        })
        .margin(10)

        Button({ type: ButtonType.Normal, stateEffect: true }) {
          Text('deleteAesKey')
            .fontColor(Color.White)
            .fontSize(20)
Z
zhangcheng 已提交
918
        }
G
gaoshuyang 已提交
919 920 921 922 923 924 925 926 927 928 929 930 931 932 933
        .borderRadius(8)
        .width('45%')
        .height('5%')
        .backgroundColor(0x317aff)
        .onClick(() => {
          DeleteKey()
        })
        .margin(10)
      }

      Row() {
        Button({ type: ButtonType.Normal, stateEffect: true }) {
          Text('EncryptData')
            .fontColor(Color.White)
            .fontSize(20)
Z
zhangcheng 已提交
934
        }
G
gaoshuyang 已提交
935 936 937 938 939 940 941 942 943 944 945 946 947
        .borderRadius(8)
        .width('45%')
        .height('5%')
        .backgroundColor(0x317aff)
        .onClick(() => {
          EncryptData()
        })
        .margin(10)

        Button({ type: ButtonType.Normal, stateEffect: true }) {
          Text('DecryptData')
            .fontColor(Color.White)
            .fontSize(20)
W
wKyrong 已提交
948
        }
G
gaoshuyang 已提交
949 950 951 952 953 954 955 956 957
        .borderRadius(8)
        .width('45%')
        .height('5%')
        .backgroundColor(0x317aff)
        .onClick(() => {
          DecryptData()
        })
        .margin(10)
      }
Z
zhangcheng 已提交
958
    }
G
gaoshuyang 已提交
959
  }
Z
zhangcheng 已提交
960
}
Z
zhangcheng 已提交
961 962
```

W
wKyrong 已提交
963
### 密钥协商
964
```ts
W
wKyrong 已提交
965 966
/*
 * 以下以X25519 256 TEMP密钥的Callback操作使用为例
967
 */
Z
zhangcheng 已提交
968 969
import huks from '@ohos.security.huks';

W
wKyrong 已提交
970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066
/*
 * 确定密钥别名和封装密钥属性参数集
 */
let srcKeyAliasFirst = "AgreeX25519KeyFirstAlias";
let srcKeyAliasSecond = "AgreeX25519KeySecondAlias";
let agreeX25519InData = 'AgreeX25519TestIndata';
let finishOutData;
let handle;
let exportKey;
let exportKeyFrist;
let exportKeySecond;

/* 集成生成密钥参数集 */
let properties = new Array();
properties[0] = {
    tag: huks.HuksTag.HUKS_TAG_ALGORITHM,
    value: huks.HuksKeyAlg.HUKS_ALG_X25519,
}
properties[1] = {
    tag: huks.HuksTag.HUKS_TAG_PURPOSE,
    value: huks.HuksKeyPurpose.HUKS_KEY_PURPOSE_AGREE,
}
properties[2] = {
    tag: huks.HuksTag.HUKS_TAG_KEY_SIZE,
    value: huks.HuksKeySize.HUKS_CURVE25519_KEY_SIZE_256,
}
properties[3] = {
    tag: huks.HuksTag.HUKS_TAG_DIGEST,
    value: huks.HuksKeyDigest.HUKS_DIGEST_NONE,
}
properties[4] = {
    tag: huks.HuksTag.HUKS_TAG_PADDING,
    value: huks.HuksKeyPadding.HUKS_PADDING_NONE,
}
properties[5] = {
    tag: huks.HuksTag.HUKS_TAG_BLOCK_MODE,
    value: huks.HuksCipherMode.HUKS_MODE_CBC,
}
let HuksOptions = {
    properties: properties,
    inData: new Uint8Array(new Array())
}

/* 集成第一个协商参数集 */
let finishProperties = new Array();
finishProperties[0] = {
    tag: huks.HuksTag.HUKS_TAG_KEY_STORAGE_FLAG,
    value: huks.HuksKeyStorageType.HUKS_STORAGE_TEMP,
}
finishProperties[1] = {
    tag: huks.HuksTag.HUKS_TAG_IS_KEY_ALIAS,
    value: true
}
finishProperties[2] = {
    tag: huks.HuksTag.HUKS_TAG_ALGORITHM,
    value: huks.HuksKeyAlg.HUKS_ALG_AES,
}
finishProperties[3] = {
    tag: huks.HuksTag.HUKS_TAG_KEY_SIZE,
    value: huks.HuksKeySize.HUKS_AES_KEY_SIZE_256,
}
finishProperties[4] = {
    tag: huks.HuksTag.HUKS_TAG_PURPOSE,
    value:
    huks.HuksKeyPurpose.HUKS_KEY_PURPOSE_ENCRYPT |
    huks.HuksKeyPurpose.HUKS_KEY_PURPOSE_DECRYPT,
}
finishProperties[5] = {
    tag: huks.HuksTag.HUKS_TAG_DIGEST,
    value: huks.HuksKeyDigest.HUKS_DIGEST_NONE,
}
finishProperties[6] = {
    tag: huks.HuksTag.HUKS_TAG_KEY_ALIAS,
    value: StringToUint8Array(srcKeyAliasFirst+ 'final'),
}
finishProperties[7] = {
    tag: huks.HuksTag.HUKS_TAG_PADDING,
    value: huks.HuksKeyPadding.HUKS_PADDING_NONE,
}
finishProperties[8] = {
    tag: huks.HuksTag.HUKS_TAG_BLOCK_MODE,
    value: huks.HuksCipherMode.HUKS_MODE_ECB,
}
let finishOptionsFrist = {
    properties: finishProperties,
    inData: StringToUint8Array(agreeX25519InData)
}
/* 集成第二个协商参数集 */
let finishOptionsSecond = {
    properties: finishProperties,
    inData: StringToUint8Array(agreeX25519InData)
}
finishOptionsSecond.properties.splice(6, 1, {
    tag: huks.HuksTag.HUKS_TAG_KEY_ALIAS,
    value: StringToUint8Array(srcKeyAliasSecond + 'final'),
})

Z
zhangcheng 已提交
1067
function StringToUint8Array(str) {
Z
zhangcheng 已提交
1068 1069
    let arr = [];
    for (let i = 0, j = str.length; i < j; ++i) {
1070 1071 1072 1073
        arr.push(str.charCodeAt(i));
    }
    return new Uint8Array(arr);
}
Z
zhangcheng 已提交
1074

W
wKyrong 已提交
1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089
function generateKeyItem(keyAlias:string, huksOptions:huks.HuksOptions, throwObject) {
    return new Promise((resolve, reject) => {
        try {
            huks.generateKeyItem(keyAlias, huksOptions, function (error, data) {
                if (error) {
                    reject(error);
                } else {
                    resolve(data);
                }
            });
        } catch (error) {
            throwObject.isThrow = true;
            throw(error);
        }
    });
1090 1091
}

Z
zhangcheng 已提交
1092 1093
async function publicGenKeyFunc(keyAlias:string, huksOptions:huks.HuksOptions) {
    console.info(`enter callback generateKeyItem`);
W
wKyrong 已提交
1094
    let throwObject = {isThrow: false};
Z
zhangcheng 已提交
1095
    try {
W
wKyrong 已提交
1096
        await generateKeyItem(keyAlias, huksOptions, throwObject)
Z
zhangcheng 已提交
1097 1098 1099 1100
            .then((data) => {
                console.info(`callback: generateKeyItem success, data = ${JSON.stringify(data)}`);
            })
            .catch(error => {
W
wKyrong 已提交
1101 1102 1103 1104 1105
                if (throwObject.isThrow) {
                    throw(error);
                } else {
                    console.error(`callback: generateKeyItem failed, code: ${error.code}, msg: ${error.message}`);
                }
Z
zhangcheng 已提交
1106 1107 1108 1109 1110 1111
            });
    } catch (error) {
        console.error(`callback: generateKeyItem input arg invalid, code: ${error.code}, msg: ${error.message}`);
    }
}

W
wKyrong 已提交
1112
function initSession(keyAlias:string, huksOptions:huks.HuksOptions, throwObject) : Promise<huks.HuksSessionHandle> {
Z
zhangcheng 已提交
1113 1114
    return new Promise((resolve, reject) => {
        try {
W
wKyrong 已提交
1115
            huks.initSession(keyAlias, huksOptions, function (error, data) {
Z
zhangcheng 已提交
1116 1117 1118 1119 1120 1121 1122
                if (error) {
                    reject(error);
                } else {
                    resolve(data);
                }
            });
        } catch (error) {
W
wKyrong 已提交
1123
            throwObject.isThrow = true;
Z
zhangcheng 已提交
1124 1125 1126 1127 1128 1129
            throw(error);
        }
    });
}

async function publicInitFunc(keyAlias:string, huksOptions:huks.HuksOptions) {
W
wKyrong 已提交
1130 1131
    console.info(`enter callback doInit`);
    let throwObject = {isThrow: false};
Z
zhangcheng 已提交
1132
    try {
W
wKyrong 已提交
1133
        await initSession(keyAlias, huksOptions, throwObject)
Z
zhangcheng 已提交
1134
            .then ((data) => {
W
wKyrong 已提交
1135
                console.info(`callback: doInit success, data = ${JSON.stringify(data)}`);
Z
zhangcheng 已提交
1136 1137
                handle = data.handle;
            })
W
wKyrong 已提交
1138 1139 1140 1141 1142 1143
            .catch((error) => {
                if (throwObject.isThrow) {
                    throw(error);
                } else {
                    console.error(`callback: doInit failed, code: ${error.code}, msg: ${error.message}`);
                }
Z
zhangcheng 已提交
1144 1145
            });
    } catch (error) {
W
wKyrong 已提交
1146
        console.error(`callback: doInit input arg invalid, code: ${error.code}, msg: ${error.message}`);
Z
zhangcheng 已提交
1147 1148 1149
    }
}

W
wKyrong 已提交
1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166
function updateSession(handle:number, huksOptions:huks.HuksOptions, throwObject) : Promise<huks.HuksReturnResult> {
    return new Promise((resolve, reject) => {
        try {
            huks.updateSession(handle, huksOptions, function (error, data) {
                if (error) {
                    reject(error);
                } else {
                    resolve(data);
                }
            });
        } catch (error) {
            throwObject.isThrow = true;
            throw(error);
        }
    });
}

Z
zhangcheng 已提交
1167 1168
async function publicUpdateFunc(handle:number, huksOptions:huks.HuksOptions) {
    console.info(`enter callback doUpdate`);
W
wKyrong 已提交
1169
    let throwObject = {isThrow: false};
Z
zhangcheng 已提交
1170
    try {
W
wKyrong 已提交
1171
        await updateSession(handle, huksOptions, throwObject)
Z
zhangcheng 已提交
1172 1173 1174 1175
            .then ((data) => {
                console.info(`callback: doUpdate success, data = ${JSON.stringify(data)}`);
            })
            .catch(error => {
W
wKyrong 已提交
1176 1177 1178 1179 1180
                if (throwObject.isThrow) {
                    throw(error);
                } else {
                    console.error(`callback: doUpdate failed, code: ${error.code}, msg: ${error.message}`);
                }
Z
zhangcheng 已提交
1181 1182 1183 1184 1185 1186
            });
    } catch (error) {
        console.error(`callback: doUpdate input arg invalid, code: ${error.code}, msg: ${error.message}`);
    }
}

W
wKyrong 已提交
1187
function finishSession(handle:number, huksOptions:huks.HuksOptions, throwObject) : Promise<huks.HuksReturnResult> {
Z
zhangcheng 已提交
1188 1189
    return new Promise((resolve, reject) => {
        try {
W
wKyrong 已提交
1190
            huks.finishSession(handle, huksOptions, function (error, data) {
Z
zhangcheng 已提交
1191 1192 1193 1194 1195 1196 1197
                if (error) {
                    reject(error);
                } else {
                    resolve(data);
                }
            });
        } catch (error) {
W
wKyrong 已提交
1198
            throwObject.isThrow = true;
Z
zhangcheng 已提交
1199 1200 1201 1202 1203 1204 1205
            throw(error);
        }
    });
}

async function publicFinishFunc(handle:number, huksOptions:huks.HuksOptions) {
    console.info(`enter callback doFinish`);
W
wKyrong 已提交
1206
    let throwObject = {isThrow: false};
Z
zhangcheng 已提交
1207
    try {
W
wKyrong 已提交
1208
        await finishSession(handle, huksOptions, throwObject)
Z
zhangcheng 已提交
1209
            .then ((data) => {
W
wKyrong 已提交
1210
                finishOutData = data.outData;
Z
zhangcheng 已提交
1211 1212 1213
                console.info(`callback: doFinish success, data = ${JSON.stringify(data)}`);
            })
            .catch(error => {
W
wKyrong 已提交
1214 1215 1216 1217 1218
                if (throwObject.isThrow) {
                    throw(error);
                } else {
                    console.error(`callback: doFinish failed, code: ${error.code}, msg: ${error.message}`);
                }
Z
zhangcheng 已提交
1219 1220 1221 1222 1223 1224
            });
    } catch (error) {
        console.error(`callback: doFinish input arg invalid, code: ${error.code}, msg: ${error.message}`);
    }
}

W
wKyrong 已提交
1225
function exportKeyItem(keyAlias:string, huksOptions:huks.HuksOptions, throwObject) : Promise<huks.HuksReturnResult> {
Z
zhangcheng 已提交
1226 1227
    return new Promise((resolve, reject) => {
        try {
W
wKyrong 已提交
1228
            huks.exportKeyItem(keyAlias, huksOptions, function (error, data) {
Z
zhangcheng 已提交
1229 1230 1231 1232 1233 1234 1235
                if (error) {
                    reject(error);
                } else {
                    resolve(data);
                }
            });
        } catch (error) {
W
wKyrong 已提交
1236
            throwObject.isThrow = true;
Z
zhangcheng 已提交
1237 1238 1239 1240 1241
            throw(error);
        }
    });
}

W
wKyrong 已提交
1242 1243 1244
async function publicExportKeyFunc(keyAlias:string, huksOptions:huks.HuksOptions) {
    console.info(`enter callback export`);
    let throwObject = {isThrow: false};
Z
zhangcheng 已提交
1245
    try {
W
wKyrong 已提交
1246
        await exportKeyItem(keyAlias, huksOptions, throwObject)
Z
zhangcheng 已提交
1247
            .then ((data) => {
W
wKyrong 已提交
1248 1249
                console.info(`callback: exportKeyItem success, data = ${JSON.stringify(data)}`);
                exportKey = data.outData;
Z
zhangcheng 已提交
1250 1251
            })
            .catch(error => {
W
wKyrong 已提交
1252 1253 1254 1255 1256
                if (throwObject.isThrow) {
                    throw(error);
                } else {
                    console.error(`callback: exportKeyItem failed, code: ${error.code}, msg: ${error.message}`);
                }
Z
zhangcheng 已提交
1257 1258
            });
    } catch (error) {
W
wKyrong 已提交
1259
        console.error(`callback: exportKeyItem input arg invalid, code: ${error.code}, msg: ${error.message}`);
Z
zhangcheng 已提交
1260 1261 1262
    }
}

W
wKyrong 已提交
1263
function deleteKeyItem(keyAlias:string, huksOptions:huks.HuksOptions, throwObject) {
Z
zhangcheng 已提交
1264 1265 1266 1267 1268 1269 1270 1271 1272 1273
    return new Promise((resolve, reject) => {
        try {
            huks.deleteKeyItem(keyAlias, huksOptions, function (error, data) {
                if (error) {
                    reject(error);
                } else {
                    resolve(data);
                }
            });
        } catch (error) {
W
wKyrong 已提交
1274
            throwObject.isThrow = true;
Z
zhangcheng 已提交
1275 1276 1277 1278 1279
            throw(error);
        }
    });
}

W
wKyrong 已提交
1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296
async function publicDeleteKeyFunc(keyAlias:string, huksOptions:huks.HuksOptions) {
    console.info(`enter callback deleteKeyItem`);
    let throwObject = {isThrow: false};
    try {
        await deleteKeyItem(keyAlias, huksOptions, throwObject)
            .then ((data) => {
                console.info(`callback: deleteKeyItem key success, data = ${JSON.stringify(data)}`);
            })
            .catch(error => {
                if (throwObject.isThrow) {
                    throw(error);
                } else {
                    console.error(`callback: deleteKeyItem failed, code: ${error.code}, msg: ${error.message}`);
                }
            });
    } catch (error) {
        console.error(`callback: deletKeeyItem input arg invalid, code: ${error.code}, msg: ${error.message}`);
1297
    }
W
wKyrong 已提交
1298
}
1299

W
wKyrong 已提交
1300 1301 1302 1303
async function testAgree() {
    /* 1.生成两个密钥并导出 */
    await publicGenKeyFunc(srcKeyAliasFirst, HuksOptions);
    await publicGenKeyFunc(srcKeyAliasSecond, HuksOptions);
Z
zhangcheng 已提交
1304

W
wKyrong 已提交
1305 1306 1307 1308
    await publicExportKeyFunc(srcKeyAliasFirst, HuksOptions);
    exportKeyFrist = exportKey;
    await publicExportKeyFunc(srcKeyAliasFirst, HuksOptions);
    exportKeySecond = exportKey;
Z
zhangcheng 已提交
1309

W
wKyrong 已提交
1310 1311 1312 1313 1314
    /* 对第一个密钥进行协商 */
    await publicInitFunc(srcKeyAliasFirst, HuksOptions);
    HuksOptions.inData = exportKeySecond;
    await publicUpdateFunc(handle, HuksOptions);
    await publicFinishFunc(handle, finishOptionsFrist);
1315

W
wKyrong 已提交
1316 1317 1318 1319 1320
    /* 对第二个密钥进行协商 */
    await publicInitFunc(srcKeyAliasSecond, HuksOptions);
    HuksOptions.inData = exportKeyFrist;
    await publicUpdateFunc(handle, HuksOptions);
    await publicFinishFunc(handle, finishOptionsSecond);
Z
zhangcheng 已提交
1321

W
wKyrong 已提交
1322 1323
    await publicDeleteKeyFunc(srcKeyAliasFirst, HuksOptions);
    await publicDeleteKeyFunc(srcKeyAliasSecond, HuksOptions);
1324 1325 1326
}
```

W
wKyrong 已提交
1327 1328 1329 1330 1331 1332
### 密钥派生
```ts
/*
 * 以下以HKDF256密钥的Promise操作使用为例
 */
import huks from '@ohos.security.huks';
Z
zhangcheng 已提交
1333

W
wKyrong 已提交
1334 1335 1336 1337 1338 1339 1340 1341
/*
 * 确定密钥别名和封装密钥属性参数集
 */
let srcKeyAlias = "hkdf_Key";
let deriveHkdfInData = "deriveHkdfTestIndata";
let handle;
let finishOutData;
let HuksKeyDeriveKeySize = 32;
Z
zhangcheng 已提交
1342

W
wKyrong 已提交
1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364
/* 集成生成密钥参数集 */
let properties = new Array();
properties[0] = {
    tag: huks.HuksTag.HUKS_TAG_ALGORITHM,
    value: huks.HuksKeyAlg.HUKS_ALG_AES,
}
properties[1] = {
    tag: huks.HuksTag.HUKS_TAG_PURPOSE,
    value: huks.HuksKeyPurpose.HUKS_KEY_PURPOSE_DERIVE,
}
properties[2] = {
    tag: huks.HuksTag.HUKS_TAG_DIGEST,
    value: huks.HuksKeyDigest.HUKS_DIGEST_SHA256,
}
properties[3] = {
    tag: huks.HuksTag.HUKS_TAG_KEY_SIZE,
    value: huks.HuksKeySize.HUKS_AES_KEY_SIZE_128,
}
let huksOptions = {
    properties: properties,
    inData: new Uint8Array(new Array())
}
Z
zhangcheng 已提交
1365

W
wKyrong 已提交
1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387
/* 集成init时密钥参数集 */
let initProperties = new Array();
initProperties[0] = {
    tag: huks.HuksTag.HUKS_TAG_ALGORITHM,
    value: huks.HuksKeyAlg.HUKS_ALG_HKDF,
}
initProperties[1] = {
    tag: huks.HuksTag.HUKS_TAG_PURPOSE,
    value: huks.HuksKeyPurpose.HUKS_KEY_PURPOSE_DERIVE,
}
initProperties[2] = {
    tag: huks.HuksTag.HUKS_TAG_DIGEST,
    value: huks.HuksKeyDigest.HUKS_DIGEST_SHA256,
}
initProperties[3] = {
    tag: huks.HuksTag.HUKS_TAG_DERIVE_KEY_SIZE,
    value: HuksKeyDeriveKeySize,
}
let initOptions = {
    properties: initProperties,
    inData: new Uint8Array(new Array())
}
Z
zhangcheng 已提交
1388

W
wKyrong 已提交
1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432
/* 集成finish时密钥参数集 */
let finishProperties = new Array();
finishProperties[0] = {
    tag: huks.HuksTag.HUKS_TAG_KEY_STORAGE_FLAG,
    value: huks.HuksKeyStorageType.HUKS_STORAGE_PERSISTENT,
}
finishProperties[1] = {
    tag: huks.HuksTag.HUKS_TAG_IS_KEY_ALIAS,
    value: true,
}
finishProperties[2] = {
    tag: huks.HuksTag.HUKS_TAG_ALGORITHM,
    value: huks.HuksKeyAlg.HUKS_ALG_AES,
}
finishProperties[3] = {
    tag: huks.HuksTag.HUKS_TAG_KEY_SIZE,
    value: huks.HuksKeySize.HUKS_AES_KEY_SIZE_256,
}
finishProperties[4] = {
    tag: huks.HuksTag.HUKS_TAG_PURPOSE,
    value:
    huks.HuksKeyPurpose.HUKS_KEY_PURPOSE_ENCRYPT |
    huks.HuksKeyPurpose.HUKS_KEY_PURPOSE_DECRYPT,
}
finishProperties[5] = {
    tag: huks.HuksTag.HUKS_TAG_DIGEST,
    value: huks.HuksKeyDigest.HUKS_DIGEST_NONE,
}
finishProperties[6] = {
    tag: huks.HuksTag.HUKS_TAG_KEY_ALIAS,
    value: StringToUint8Array(srcKeyAlias),
}
finishProperties[7] = {
    tag: huks.HuksTag.HUKS_TAG_PADDING,
    value: huks.HuksKeyPadding.HUKS_PADDING_NONE,
}
finishProperties[8] = {
    tag: huks.HuksTag.HUKS_TAG_BLOCK_MODE,
    value: huks.HuksCipherMode.HUKS_MODE_ECB,
}
let finishOptions = {
    properties: finishProperties,
    inData: new Uint8Array(new Array())
}
Z
zhangcheng 已提交
1433 1434

function StringToUint8Array(str) {
Z
zhangcheng 已提交
1435 1436
    let arr = [];
    for (let i = 0, j = str.length; i < j; ++i) {
Z
zhangcheng 已提交
1437 1438 1439 1440 1441
        arr.push(str.charCodeAt(i));
    }
    return new Uint8Array(arr);
}

W
wKyrong 已提交
1442
function generateKeyItem(keyAlias:string, huksOptions:huks.HuksOptions, throwObject) {
Z
zhangcheng 已提交
1443 1444 1445 1446 1447 1448 1449 1450 1451 1452
    return new Promise((resolve, reject) => {
        try {
            huks.generateKeyItem(keyAlias, huksOptions, function (error, data) {
                if (error) {
                    reject(error);
                } else {
                    resolve(data);
                }
            });
        } catch (error) {
W
wKyrong 已提交
1453
            throwObject.isThrow = true;
Z
zhangcheng 已提交
1454 1455 1456 1457
            throw(error);
        }
    });
}
Z
zhangcheng 已提交
1458

W
wKyrong 已提交
1459 1460 1461
async function publicGenKeyFunc(keyAlias:string, huksOptions:huks.HuksOptions) {
    console.info(`enter callback generateKeyItem`);
    let throwObject = {isThrow: false};
Z
zhangcheng 已提交
1462
    try {
W
wKyrong 已提交
1463 1464 1465
        await generateKeyItem(keyAlias, huksOptions, throwObject)
            .then((data) => {
                console.info(`callback: generateKeyItem success, data = ${JSON.stringify(data)}`);
Z
zhangcheng 已提交
1466
            })
W
wKyrong 已提交
1467 1468 1469 1470 1471 1472
            .catch(error => {
                if (throwObject.isThrow) {
                    throw(error);
                } else {
                    console.error(`callback: generateKeyItem failed, code: ${error.code}, msg: ${error.message}`);
                }
Z
zhangcheng 已提交
1473 1474
            });
    } catch (error) {
W
wKyrong 已提交
1475
        console.error(`callback: generateKeyItem input arg invalid, code: ${error.code}, msg: ${error.message}`);
Z
zhangcheng 已提交
1476
    }
Z
zhangcheng 已提交
1477
}
Z
zhangcheng 已提交
1478

W
wKyrong 已提交
1479
function initSession(keyAlias:string, huksOptions:huks.HuksOptions, throwObject) : Promise<huks.HuksSessionHandle> {
Z
zhangcheng 已提交
1480 1481 1482 1483 1484 1485 1486 1487 1488 1489
    return new Promise((resolve, reject) => {
        try {
            huks.initSession(keyAlias, huksOptions, function (error, data) {
                if (error) {
                    reject(error);
                } else {
                    resolve(data);
                }
            });
        } catch (error) {
W
wKyrong 已提交
1490
            throwObject.isThrow = true;
Z
zhangcheng 已提交
1491 1492
            throw(error);
        }
Z
zhangcheng 已提交
1493
    });
Z
zhangcheng 已提交
1494
}
Z
zhangcheng 已提交
1495

W
wKyrong 已提交
1496 1497 1498
async function publicInitFunc(keyAlias:string, huksOptions:huks.HuksOptions) {
    console.info(`enter callback doInit`);
    let throwObject = {isThrow: false};
Z
zhangcheng 已提交
1499
    try {
W
wKyrong 已提交
1500
        await initSession(keyAlias, huksOptions, throwObject)
Z
zhangcheng 已提交
1501
            .then ((data) => {
W
wKyrong 已提交
1502 1503
                console.info(`callback: doInit success, data = ${JSON.stringify(data)}`);
                handle = data.handle;
Z
zhangcheng 已提交
1504
            })
W
wKyrong 已提交
1505 1506 1507 1508 1509 1510
            .catch((error) => {
                if (throwObject.isThrow) {
                    throw(error);
                } else {
                    console.error(`callback: doInit failed, code: ${error.code}, msg: ${error.message}`);
                }
Z
zhangcheng 已提交
1511 1512
            });
    } catch (error) {
W
wKyrong 已提交
1513
        console.error(`callback: doInit input arg invalid, code: ${error.code}, msg: ${error.message}`);
Z
zhangcheng 已提交
1514 1515
    }
}
Z
zhangcheng 已提交
1516

W
wKyrong 已提交
1517
function updateSession(handle:number, huksOptions:huks.HuksOptions, throwObject) : Promise<huks.HuksReturnResult> {
Z
zhangcheng 已提交
1518 1519 1520 1521 1522 1523 1524 1525 1526 1527
    return new Promise((resolve, reject) => {
        try {
            huks.updateSession(handle, huksOptions, function (error, data) {
                if (error) {
                    reject(error);
                } else {
                    resolve(data);
                }
            });
        } catch (error) {
W
wKyrong 已提交
1528
            throwObject.isThrow = true;
Z
zhangcheng 已提交
1529 1530
            throw(error);
        }
Z
zhangcheng 已提交
1531
    });
Z
zhangcheng 已提交
1532
}
Z
zhangcheng 已提交
1533

W
wKyrong 已提交
1534 1535 1536
async function publicUpdateFunc(handle:number, huksOptions:huks.HuksOptions) {
    console.info(`enter callback doUpdate`);
    let throwObject = {isThrow: false};
Z
zhangcheng 已提交
1537
    try {
W
wKyrong 已提交
1538
        await updateSession(handle, huksOptions, throwObject)
Z
zhangcheng 已提交
1539
            .then ((data) => {
W
wKyrong 已提交
1540
                console.info(`callback: doUpdate success, data = ${JSON.stringify(data)}`);
Z
zhangcheng 已提交
1541 1542
            })
            .catch(error => {
W
wKyrong 已提交
1543 1544 1545 1546 1547
                if (throwObject.isThrow) {
                    throw(error);
                } else {
                    console.error(`callback: doUpdate failed, code: ${error.code}, msg: ${error.message}`);
                }
Z
zhangcheng 已提交
1548 1549
            });
    } catch (error) {
W
wKyrong 已提交
1550
        console.error(`callback: doUpdate input arg invalid, code: ${error.code}, msg: ${error.message}`);
Z
zhangcheng 已提交
1551 1552 1553
    }
}

W
wKyrong 已提交
1554
function finishSession(handle:number, huksOptions:huks.HuksOptions, throwObject) : Promise<huks.HuksReturnResult> {
Z
zhangcheng 已提交
1555 1556 1557 1558 1559 1560 1561 1562 1563 1564
    return new Promise((resolve, reject) => {
        try {
            huks.finishSession(handle, huksOptions, function (error, data) {
                if (error) {
                    reject(error);
                } else {
                    resolve(data);
                }
            });
        } catch (error) {
W
wKyrong 已提交
1565
            throwObject.isThrow = true;
Z
zhangcheng 已提交
1566 1567
            throw(error);
        }
Z
zhangcheng 已提交
1568
    });
Z
zhangcheng 已提交
1569 1570
}

W
wKyrong 已提交
1571 1572 1573
async function publicFinishFunc(handle:number, huksOptions:huks.HuksOptions) {
    console.info(`enter callback doFinish`);
    let throwObject = {isThrow: false};
Z
zhangcheng 已提交
1574
    try {
W
wKyrong 已提交
1575
        await finishSession(handle, huksOptions, throwObject)
Z
zhangcheng 已提交
1576
            .then ((data) => {
W
wKyrong 已提交
1577 1578
                finishOutData = data.outData;
                console.info(`callback: doFinish success, data = ${JSON.stringify(data)}`);
Z
zhangcheng 已提交
1579 1580
            })
            .catch(error => {
W
wKyrong 已提交
1581 1582
                if (throwObject.isThrow) {
                    throw(error);
Z
zhangcheng 已提交
1583
                } else {
W
wKyrong 已提交
1584
                    console.error(`callback: doFinish failed, code: ${error.code}, msg: ${error.message}`);
Z
zhangcheng 已提交
1585 1586 1587
                }
            });
    } catch (error) {
W
wKyrong 已提交
1588
        console.error(`callback: doFinish input arg invalid, code: ${error.code}, msg: ${error.message}`);
Z
zhangcheng 已提交
1589 1590
    }
}
Z
zhangcheng 已提交
1591

W
wKyrong 已提交
1592
function deleteKeyItem(keyAlias:string, huksOptions:huks.HuksOptions, throwObject) {
Z
zhangcheng 已提交
1593 1594
    return new Promise((resolve, reject) => {
        try {
W
wKyrong 已提交
1595
            huks.deleteKeyItem(keyAlias, huksOptions, function (error, data) {
Z
zhangcheng 已提交
1596 1597 1598 1599 1600 1601 1602
                if (error) {
                    reject(error);
                } else {
                    resolve(data);
                }
            });
        } catch (error) {
W
wKyrong 已提交
1603
            throwObject.isThrow = true;
Z
zhangcheng 已提交
1604 1605
            throw(error);
        }
Z
zhangcheng 已提交
1606
    });
Z
zhangcheng 已提交
1607 1608 1609 1610
}

async function publicDeleteKeyFunc(keyAlias:string, huksOptions:huks.HuksOptions) {
    console.info(`enter callback deleteKeyItem`);
W
wKyrong 已提交
1611
    let throwObject = {isThrow: false};
Z
zhangcheng 已提交
1612
    try {
W
wKyrong 已提交
1613
        await deleteKeyItem(keyAlias, huksOptions, throwObject)
Z
zhangcheng 已提交
1614 1615 1616 1617
            .then ((data) => {
                console.info(`callback: deleteKeyItem key success, data = ${JSON.stringify(data)}`);
            })
            .catch(error => {
W
wKyrong 已提交
1618 1619 1620 1621 1622
                if (throwObject.isThrow) {
                    throw(error);
                } else {
                    console.error(`callback: deleteKeyItem failed, code: ${error.code}, msg: ${error.message}`);
                }
Z
zhangcheng 已提交
1623 1624
            });
    } catch (error) {
W
wKyrong 已提交
1625
        console.error(`callback: deletKeeyItem input arg invalid, code: ${error.code}, msg: ${error.message}`);
Z
zhangcheng 已提交
1626 1627
    }
}
Z
zhangcheng 已提交
1628

W
wKyrong 已提交
1629 1630 1631
async function testDerive() {
    /* 生成密钥 */
    await publicGenKeyFunc(srcKeyAlias, huksOptions);
Z
zhangcheng 已提交
1632

W
wKyrong 已提交
1633 1634
    /* 进行派生操作 */
    await publicInitFunc(srcKeyAlias, initOptions);
Z
zhangcheng 已提交
1635

W
wKyrong 已提交
1636 1637 1638 1639 1640
    initOptions.inData = StringToUint8Array(deriveHkdfInData);
    await publicUpdateFunc(handle, initOptions);
    await publicFinishFunc(handle, finishOptions);

    await publicDeleteKeyFunc(srcKeyAlias, huksOptions);
Z
zhangcheng 已提交
1641
}
W
wKyrong 已提交
1642
```
Z
zhangcheng 已提交
1643

W
wKyrong 已提交
1644
## 密钥访问控制
Z
zhangcheng 已提交
1645

W
wKyrong 已提交
1646
HUKS提供了全面完善的密钥访问控制能力,确保存储在HUKS中的密钥被合法正确的访问。
Z
zhangcheng 已提交
1647

W
wKyrong 已提交
1648 1649 1650
首先,业务只能访问属于自己的密钥,即只能访问通过HUKS生成或导入的密钥。
其次,支持密钥的用户身份认证访问控制,对于高安敏感的业务密钥,需要在使用密钥的时候,再次要求用户即时的验证锁屏密码或生物特征,验证通过后,才能使用业务密钥。
除此之外,HUKS还支持严格限制密钥的使用用途,如支持只允许AES密钥进行加密解密,只允许RSA密钥进行签名验签。
Z
zhangcheng 已提交
1651

W
wKyrong 已提交
1652
**<font size=5>用户身份认证访问控制</font>**
Z
zhangcheng 已提交
1653

W
wKyrong 已提交
1654
生成或导入密钥时,可以指定密钥必须经过用户身份认证后才能使用。您可以指定用于解锁设备锁屏的凭据(锁屏密码、指纹、人脸)的子集进行身份认证。在生成/导入密钥后,即使应用进程被攻击也不会导致未经用户授权的密钥访问,一般用于高敏感且高级别安全保护的场景,比如免密登录、免密支付、自动填充密码保护场景。
Z
zhangcheng 已提交
1655

W
wKyrong 已提交
1656 1657 1658
除用户身份认证外,应用还须将密钥的授权访问类型(即失效条件)设置为以下两种类型之一:
- **清除锁屏密码后密钥永久无效。** 设置此模式的前提是当前用户已经设置了锁屏密码,在生成/导入密钥后,一旦清除了锁屏密码,此类密钥将永久失效。注意,修改密码不会导致失效情况发生。此模式适合那些需要锁屏密码授权访问或用户强相关的数据保护的场景。
- **用户新录入生物特征后永久无效。** 此模式需要当前用户至少录入了一个生物特征(如指纹)才能生效,在生成/导入密钥后,一旦录入新的生物特征,这些密钥将永久失效。注意,仅删除生物特征不会导致失效情况发生。如果您不希望新录入的生物特征后,用户还可以授权访问原有数据(密钥保护的数据),那么可以使用此模式,如免密登录,免密支付等场景。
Z
zhangcheng 已提交
1659

W
wKyrong 已提交
1660
此外,为了保证密钥使用时用户认证结果的有效性(不可重放),HUKS支持挑战值校验:在身份认证前,需要从HUKS获取挑战值(调用[huks.initSession()](../reference/apis/js-apis-huks.md#huksinitsession9)返回的[HuksSessionHandle](../reference/apis/js-apis-huks.md#hukssessionhandle9)中)传给用户身份认证方法([userIAM_userAuth.getAuthInstance](../reference/apis/js-apis-useriam-userauth.md#authinstance9)),然后在密钥操作时校验认证令牌的挑战值。
Z
zhangcheng 已提交
1661

W
wKyrong 已提交
1662
**开发流程**
Z
zhangcheng 已提交
1663

W
wKyrong 已提交
1664
设置了二次用户身份认证的密钥,需要先初始化密钥会话并获取挑战值,然后将HUKS生成的挑战值传至用户身份认证方法进行用户身份认证,认证通过后获取一个认证令牌,将认证令牌传至HUKS进行密钥操作。
Z
zhangcheng 已提交
1665

W
wKyrong 已提交
1666
![huks_key_user_auth_work_flow](./figures/huks_key_user_auth_work_flow.png)
Z
zhangcheng 已提交
1667

W
wKyrong 已提交
1668
**接口说明**
Z
zhangcheng 已提交
1669

W
wKyrong 已提交
1670
1. 生成或导入密钥时,在密钥属性集中需指定三个参数:用户认证类型[HuksUserAuthType](../reference/apis/js-apis-huks.md#huksuserauthtype9)、授权访问类型[HuksAuthAccessType](../reference/apis/js-apis-huks.md#huksauthaccesstype9)、挑战值类型[HuksChallengeType](../reference/apis/js-apis-huks.md#hukschallengetype9)
Z
zhangcheng 已提交
1671

W
wKyrong 已提交
1672 1673 1674 1675 1676 1677
	**表3** 用户认证类型:三种类型的子集
	| 名称            | 值  | 说明                      |
	| ------------------------------- |---|------------------------ |
	| HUKS_USER_AUTH_TYPE_FINGERPRINT |0x0001  | 用户认证类型为指纹,允许和人脸、锁屏密码同时设置  |
	| HUKS_USER_AUTH_TYPE_FACE     |0x0002   | 用户认证类型为人脸 ,允许和指纹、锁屏密码同时设置 |
	| HUKS_USER_AUTH_TYPE_PIN      |0x0004  | 用户认证类型为锁屏密码,允许和人脸、指纹同时设置 |
Z
zhangcheng 已提交
1678

W
wKyrong 已提交
1679 1680 1681 1682 1683
	**表4** 安全访问类型:二选一
	| 名称                                    | 值   | 说明             |
	| --------------------------------------- | ---- | ------------------------------------------------ |
	| HUKS_AUTH_ACCESS_INVALID_CLEAR_PASSWORD | 1    | 清除锁屏密码后密钥无法访问。       |
	| HUKS_AUTH_ACCESS_INVALID_NEW_BIO_ENROLL | 2    | 新录入生物特征后密钥无法访问,用户认证类型须包含生物认证类型。 |
Z
zhangcheng 已提交
1684

W
wKyrong 已提交
1685 1686 1687 1688 1689 1690
	**表5** 挑战值类型:三选一
	| 名称                            | 值   | 说明                        |
	| ------------------------------- | ---- | ------------------------------ |
	| HUKS_CHALLENGE_TYPE_NORMAL | 0    | 普通类型,每次密钥的使用需要独立的一次用户认证 |
	| HUKS_CHALLENGE_TYPE_CUSTOM        | 1    | 自定义类型,支持和多个密钥共享一次用户认证|
	| HUKS_CHALLENGE_TYPE_NONE         | 2    | 无挑战值类型,用户认证时不需要挑战值 |
1691

W
wKyrong 已提交
1692 1693 1694
	> **注意**
	> 
	> 当指定挑战值类型为**HUKS_CHALLENGE_TYPE_NONE** 时,不需要传递挑战值,但是存在新的限制:在用户身份认证后,一段时间内允许访问该密钥,超时后不能访问,需要重新认证才能访问。因此应用需要额外指定超时时间**HUKS_TAG_AUTH_TIMEOUT**属性(最大60秒)。
1695 1696


W
wKyrong 已提交
1697 1698 1699
2. 使用密钥时,先初始化密钥会话,然后根据密钥生成/导入阶段指定的挑战值类型属性是否需要获取挑战值,或组装新的挑战值。
        
    **表6** 使用密钥的接口介绍
1700

W
wKyrong 已提交
1701 1702 1703 1704 1705
	| 接口名                      | 描述                 |
	| -------------------------------------- | ----------------------------|
	|initSession(keyAlias: string, options: HuksOptions, callback: AsyncCallback\<HuksSessionHandle>) : void| 初始化密钥会话,获取挑战值|
	|updateSession(handle: number, options: HuksOptions, token: Uint8Array, callback: AsyncCallback\<HuksReturnResult>) : void| 分段操作数据,传递认证令牌|
	|finishSession(handle: number, options: HuksOptions, token: Uint8Array, callback: AsyncCallback\<HuksReturnResult>) : void| 结束密钥会话,传递认证令牌|
Z
zhangcheng 已提交
1706 1707 1708



W
wKyrong 已提交
1709
**开发步骤**
Z
zhangcheng 已提交
1710

W
wKyrong 已提交
1711
1. 生成密钥并指定指纹访问控制和相关属性
Z
zhangcheng 已提交
1712
```ts
Z
zhangcheng 已提交
1713 1714
import huks from '@ohos.security.huks';

W
wKyrong 已提交
1715 1716 1717 1718 1719 1720 1721 1722
/*
 * 确定密钥别名和封装密钥属性参数集
 */
let keyAlias = 'dh_key_fingerprint_access';
let properties = new Array();
properties[0] = {
  tag: huks.HuksTag.HUKS_TAG_ALGORITHM,
  value: huks.HuksKeyAlg.HUKS_ALG_SM4,
Z
zhangcheng 已提交
1723
}
W
wKyrong 已提交
1724 1725 1726
properties[1] = {
  tag: huks.HuksTag.HUKS_TAG_PURPOSE,
  value: huks.HuksKeyPurpose.HUKS_KEY_PURPOSE_ENCRYPT | huks.HuksKeyPurpose.HUKS_KEY_PURPOSE_DECRYPT,
Z
zhangcheng 已提交
1727
}
W
wKyrong 已提交
1728 1729 1730
properties[2] = {
  tag: huks.HuksTag.HUKS_TAG_KEY_SIZE,
  value: huks.HuksKeySize.HUKS_SM4_KEY_SIZE_128,
Z
zhangcheng 已提交
1731
}
W
wKyrong 已提交
1732 1733 1734
properties[3] = {
  tag: huks.HuksTag.HUKS_TAG_BLOCK_MODE,
  value: huks.HuksCipherMode.HUKS_MODE_CBC,
Z
zhangcheng 已提交
1735
}
W
wKyrong 已提交
1736 1737 1738
properties[4] = {
  tag: huks.HuksTag.HUKS_TAG_PADDING,
  value: huks.HuksKeyPadding.HUKS_PADDING_NONE,
Z
zhangcheng 已提交
1739
}
W
wKyrong 已提交
1740 1741 1742 1743
// 指定密钥身份认证的类型:指纹
properties[5] = {
  tag: huks.HuksTag.HUKS_TAG_USER_AUTH_TYPE,
  value: huks.HuksUserAuthType.HUKS_USER_AUTH_TYPE_FINGERPRINT
Z
zhangcheng 已提交
1744
}
W
wKyrong 已提交
1745 1746 1747 1748
// 指定密钥安全授权的类型(失效类型):新录入生物特征(指纹)后无效
properties[6] = {
  tag: huks.HuksTag.HUKS_TAG_KEY_AUTH_ACCESS_TYPE,
  value: huks.HuksAuthAccessType.HUKS_AUTH_ACCESS_INVALID_NEW_BIO_ENROLL
Z
zhangcheng 已提交
1749
}
W
wKyrong 已提交
1750 1751 1752 1753
// 指定挑战值的类型:默认类型
properties[7] = {
  tag: huks.HuksTag.HUKS_TAG_CHALLENGE_TYPE,
  value: huks.HuksChallengeType.HUKS_CHALLENGE_TYPE_NORMAL
Z
zhangcheng 已提交
1754
}
W
wKyrong 已提交
1755 1756 1757
let huksOptions = {
  properties: properties,
  inData: new Uint8Array(new Array())
Z
zhangcheng 已提交
1758 1759
}

W
wKyrong 已提交
1760 1761 1762 1763 1764
/*
 * 生成密钥
 */
function generateKeyItem(keyAlias:string, huksOptions:huks.HuksOptions, throwObject) {
  return new Promise((resolve, reject) => {
Z
zhangcheng 已提交
1765
    try {
W
wKyrong 已提交
1766 1767 1768 1769 1770
      huks.generateKeyItem(keyAlias, huksOptions, function (error, data) {
        if (error) {
          reject(error);
        } else {
          resolve(data);
Z
zhangcheng 已提交
1771
        }
W
wKyrong 已提交
1772 1773 1774 1775
      });
    } catch (error) {
      throwObject.isThrow = true;
      throw(error);
Z
zhangcheng 已提交
1776
    }
W
wKyrong 已提交
1777
  });
Z
zhangcheng 已提交
1778
}
Z
zhangcheng 已提交
1779

W
wKyrong 已提交
1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798
async function publicGenKeyFunc(keyAlias:string, huksOptions:huks.HuksOptions) {
  console.info(`enter callback generateKeyItem`);
  let throwObject = {isThrow: false};
  try {
    await generateKeyItem(keyAlias, huksOptions, throwObject)
      .then((data) => {
        console.info(`callback: generateKeyItem success, data = ${JSON.stringify(data)}`);
      })
      .catch(error => {
        if (throwObject.isThrow) {
          throw(error);
        } else {
          console.error(`callback: generateKeyItem failed, code: ${error.code}, msg: ${error.message}`);
        }
      });
  } catch (error) {
    console.error(`callback: generateKeyItem input arg invalid, code: ${error.code}, msg: ${error.message}`);
  }
}
Z
zhangcheng 已提交
1799

W
wKyrong 已提交
1800 1801 1802 1803
async function TestGenKeyForFingerprintAccessControl() {
  await publicGenKeyFunc(keyAlias, huksOptions);
}
```
Z
zhangcheng 已提交
1804 1805


W
wKyrong 已提交
1806
2. 初始化密钥会话获取挑战值并发起指纹认证获取认证令牌
Z
zhangcheng 已提交
1807
```ts
Z
zhangcheng 已提交
1808
import huks from '@ohos.security.huks';
W
wKyrong 已提交
1809
import userIAM_userAuth from '@ohos.userIAM.userAuth';
Z
zhangcheng 已提交
1810

W
wKyrong 已提交
1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845
/*
 * 确定密钥别名和封装密钥属性参数集
 */
let srcKeyAlias = 'sm4_key_fingerprint_access';
let handle;
let challenge;
let fingerAuthToken;
let authType = userIAM_userAuth.UserAuthType.FINGERPRINT;
let authTrustLevel = userIAM_userAuth.AuthTrustLevel.ATL1;

/* 集成生成密钥参数集 & 加密参数集 */
let properties = new Array();
properties[0] = {
  tag: huks.HuksTag.HUKS_TAG_ALGORITHM,
  value: huks.HuksKeyAlg.HUKS_ALG_SM4,
}
properties[1] = {
  tag: huks.HuksTag.HUKS_TAG_PURPOSE,
  value: huks.HuksKeyPurpose.HUKS_KEY_PURPOSE_ENCRYPT | huks.HuksKeyPurpose.HUKS_KEY_PURPOSE_DECRYPT,
}
properties[2] = {
  tag: huks.HuksTag.HUKS_TAG_KEY_SIZE,
  value: huks.HuksKeySize.HUKS_SM4_KEY_SIZE_128,
}
properties[3] = {
  tag: huks.HuksTag.HUKS_TAG_BLOCK_MODE,
  value: huks.HuksCipherMode.HUKS_MODE_CBC,
}
properties[4] = {
  tag: huks.HuksTag.HUKS_TAG_PADDING,
  value: huks.HuksKeyPadding.HUKS_PADDING_NONE,
}
let huksOptions = {
  properties: properties,
  inData: new Uint8Array(new Array())
Z
zhangcheng 已提交
1846 1847
}

W
wKyrong 已提交
1848 1849
function initSession(keyAlias:string, huksOptions:huks.HuksOptions, throwObject) : Promise<huks.HuksSessionHandle> {
  return new Promise((resolve, reject) => {
Z
zhangcheng 已提交
1850
    try {
W
wKyrong 已提交
1851 1852 1853 1854 1855 1856 1857
      huks.initSession(keyAlias, huksOptions, function (error, data) {
        if (error) {
          reject(error);
        } else {
          resolve(data);
        }
      });
Z
zhangcheng 已提交
1858
    } catch (error) {
W
wKyrong 已提交
1859 1860
      throwObject.isThrow = true;
      throw(error);
Z
zhangcheng 已提交
1861
    }
W
wKyrong 已提交
1862
  });
Z
zhangcheng 已提交
1863 1864
}

W
wKyrong 已提交
1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879
async function publicInitFunc(keyAlias:string, huksOptions:huks.HuksOptions) {
  console.info(`enter callback doInit`);
  let throwObject = {isThrow: false};
  try {
    await initSession(keyAlias, huksOptions, throwObject)
      .then ((data) => {
        console.info(`callback: doInit success, data = ${JSON.stringify(data)}`);
        handle = data.handle;
        challenge = data.challenge;
      })
      .catch((error) => {
        if (throwObject.isThrow) {
          throw(error);
        } else {
          console.error(`callback: doInit failed, code: ${error.code}, msg: ${error.message}`);
Z
zhangcheng 已提交
1880
        }
W
wKyrong 已提交
1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903
      });
  } catch (error) {
    console.error(`callback: doInit input arg invalid, code: ${error.code}, msg: ${error.message}`);
  }
}

function userIAMAuthFinger(huksChallenge:Uint8Array) {
  // 获取认证对象
  let auth;
  try {
    auth = userIAM_userAuth.getAuthInstance(huksChallenge, authType, authTrustLevel);
    console.log("get auth instance success");
  } catch (error) {
    console.log("get auth instance failed" + error);
  }

  // 订阅认证结果
  try {
    auth.on("result", {
      callback: (result: userIAM_userAuth.AuthResultInfo) => {
        /* 认证成功获取认证令牌 */
        fingerAuthToken = result.token;
      }
Z
zhangcheng 已提交
1904
    });
W
wKyrong 已提交
1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923
    console.log("subscribe authentication event success");
  } catch (error) {
    console.log("subscribe authentication event failed " + error);
  }

  // 开始认证
  try {
    auth.start();
    console.info("authV9 start auth success");
  } catch (error) {
    console.info("authV9 start auth failed, error = " + error);
  }
}

async function testInitAndAuthFinger() {
  /* 初始化密钥会话获取挑战值 */
  await publicInitFunc(srcKeyAlias, huksOptions);
  /* 调用userIAM进行身份认证 */
  userIAMAuthFinger(challenge);
Z
zhangcheng 已提交
1924
}
W
wKyrong 已提交
1925
```
Z
zhangcheng 已提交
1926

W
wKyrong 已提交
1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973
3. 传入认证令牌进行数据操作
```ts
/*
 * 以下以SM4 128密钥的Callback操作使用为例
 */
import huks from '@ohos.security.huks';

/*
 * 确定密钥别名和封装密钥属性参数集
 */
let srcKeyAlias = 'sm4_key_fingerprint_access';
let IV = '1234567890123456';
let cipherInData = 'Hks_SM4_Cipher_Test_101010101010101010110_string';
let handle;
let fingerAuthToken;
let updateResult = new Array();
let finishOutData;

/* 集成生成密钥参数集 & 加密参数集 */
let propertiesEncrypt = new Array();
propertiesEncrypt[0] = {
  tag: huks.HuksTag.HUKS_TAG_ALGORITHM,
  value: huks.HuksKeyAlg.HUKS_ALG_SM4,
}
propertiesEncrypt[1] = {
  tag: huks.HuksTag.HUKS_TAG_PURPOSE,
  value: huks.HuksKeyPurpose.HUKS_KEY_PURPOSE_ENCRYPT,
}
propertiesEncrypt[2] = {
  tag: huks.HuksTag.HUKS_TAG_KEY_SIZE,
  value: huks.HuksKeySize.HUKS_SM4_KEY_SIZE_128,
}
propertiesEncrypt[3] = {
  tag: huks.HuksTag.HUKS_TAG_PADDING,
  value: huks.HuksKeyPadding.HUKS_PADDING_NONE,
}
propertiesEncrypt[4] = {
  tag: huks.HuksTag.HUKS_TAG_BLOCK_MODE,
  value: huks.HuksCipherMode.HUKS_MODE_CBC,
}
propertiesEncrypt[5] = {
  tag: huks.HuksTag.HUKS_TAG_IV,
  value: StringToUint8Array(IV),
}
let encryptOptions = {
  properties: propertiesEncrypt,
  inData: new Uint8Array(new Array())
Z
zhangcheng 已提交
1974 1975
}

W
wKyrong 已提交
1976 1977 1978 1979 1980 1981
function StringToUint8Array(str) {
  let arr = [];
  for (let i = 0, j = str.length; i < j; ++i) {
    arr.push(str.charCodeAt(i));
  }
  return new Uint8Array(arr);
Z
zhangcheng 已提交
1982 1983
}

W
wKyrong 已提交
1984 1985
function updateSession(handle:number, huksOptions:huks.HuksOptions, token:Uint8Array, throwObject) : Promise<huks.HuksReturnResult> {
  return new Promise((resolve, reject) => {
Z
zhangcheng 已提交
1986
    try {
W
wKyrong 已提交
1987 1988 1989 1990 1991 1992 1993
      huks.updateSession(handle, huksOptions, token, function (error, data) {
        if (error) {
          reject(error);
        } else {
          resolve(data);
        }
      });
Z
zhangcheng 已提交
1994
    } catch (error) {
W
wKyrong 已提交
1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018
      throwObject.isThrow = true;
      throw(error);
    }
  });
}

async function publicUpdateFunc(handle:number, token:Uint8Array, huksOptions:huks.HuksOptions) {
  console.info(`enter callback doUpdate`);
  let throwObject = {isThrow: false};
  try {
    await updateSession(handle, huksOptions, token, throwObject)
      .then ((data) => {
        console.info(`callback: doUpdate success, data = ${JSON.stringify(data)}`);
      })
      .catch(error => {
        if (throwObject.isThrow) {
          throw(error);
        } else {
          console.error(`callback: doUpdate failed, code: ${error.code}, msg: ${error.message}`);
        }
      });
  } catch (error) {
    console.error(`callback: doUpdate input arg invalid, code: ${error.code}, msg: ${error.message}`);
  }
Z
zhangcheng 已提交
2019 2020
}

W
wKyrong 已提交
2021 2022 2023 2024 2025 2026 2027 2028
function finishSession(handle:number, huksOptions:huks.HuksOptions, token:Uint8Array, throwObject) : Promise<huks.HuksReturnResult> {
  return new Promise((resolve, reject) => {
    try {
      huks.finishSession(handle, huksOptions, token, function (error, data) {
        if (error) {
          reject(error);
        } else {
          resolve(data);
Z
zhangcheng 已提交
2029
        }
W
wKyrong 已提交
2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056
      });
    } catch (error) {
      throwObject.isThrow = true;
      throw(error);
    }
  });
}

async function publicFinishFunc(handle:number, token:Uint8Array, huksOptions:huks.HuksOptions) {
  console.info(`enter callback doFinish`);
  let throwObject = {isThrow: false};
  try {
    await finishSession(handle, huksOptions, token, throwObject)
      .then ((data) => {
        finishOutData = data.outData;
        console.info(`callback: doFinish success, data = ${JSON.stringify(data)}`);
      })
      .catch(error => {
        if (throwObject.isThrow) {
          throw(error);
        } else {
          console.error(`callback: doFinish failed, code: ${error.code}, msg: ${error.message}`);
        }
      });
  } catch (error) {
    console.error(`callback: doFinish input arg invalid, code: ${error.code}, msg: ${error.message}`);
  }
Z
zhangcheng 已提交
2057 2058
}

W
wKyrong 已提交
2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072
async function testSm4Cipher() {
  encryptOptions.inData = StringToUint8Array(cipherInData);
  /* 传入认证令牌 */
  await publicUpdateFunc(handle, fingerAuthToken, encryptOptions);
  encryptUpdateResult = updateResult;

  encryptOptions.inData = new Uint8Array(new Array());
  /* 传入认证令牌 */
  await publicFinishFunc(handle, fingerAuthToken, encryptOptions);
  if (finishOutData === cipherInData) {
    console.info('test finish encrypt err ');
  } else {
    console.info('test finish encrypt success');
  }
Z
zhangcheng 已提交
2073 2074 2075
}
```

W
wKyrong 已提交
2076
## 密钥证明
Z
zhangcheng 已提交
2077

W
wKyrong 已提交
2078
HUKS为密钥提供合法性证明能力,主要应用于非对称密钥的公钥的证明。基于PKI证书链技术,HUKS可以为存储在HUKS中的非对称密钥对的公钥签发证书,证明其公钥的合法性。业务可以通过OpenHarmony提供的根CA证书,逐级验证HUKS签发的密钥证明证书,来确保证书中的公钥以及对应的私钥,确实来自合法的硬件设备,且存储管理在HUKS中。
Z
zhangcheng 已提交
2079

W
wKyrong 已提交
2080 2081 2082 2083
**开发流程**
1. 指定密钥别名和需要证明的密钥属性的标签传入HUKS。
2. 调用HUKS为应用生成一个依次由根CA证书、设备CA证书、设备证书、密钥证书组成的X.509证书链。
3. 将证书链传输至受信任的服务器,并在服务器上解析和验证证书链的有效性和单个证书是否吊销。
2084

W
wKyrong 已提交
2085
**接口说明**
2086

W
wKyrong 已提交
2087 2088 2089 2090
**表7** 密钥认证接口介绍
| 接口名                      | 描述                 |
| -------------------------------------- | ----------------------------|
|attestKeyItem(keyAlias: string, options: HuksOptions, callback: AsyncCallback\<HuksReturnResult>) : void| 密钥认证|
2091

W
wKyrong 已提交
2092
**开发步骤**
Z
zhangcheng 已提交
2093

W
wKyrong 已提交
2094 2095 2096 2097 2098
```ts
/*
 * 以下以attestKey Callback接口操作验证为例
 */
import huks from '@ohos.security.huks';
Z
zhangcheng 已提交
2099

W
wKyrong 已提交
2100 2101 2102 2103 2104 2105 2106 2107 2108 2109
/*
 * 确定密钥别名和封装密钥属性参数集
 */
let keyAliasString = "key attest";
let aliasString = keyAliasString;
let aliasUint8 = StringToUint8Array(keyAliasString);
let securityLevel = StringToUint8Array('sec_level');
let challenge = StringToUint8Array('challenge_data');
let versionInfo = StringToUint8Array('version_info');
let attestCertChain;
Z
zhangcheng 已提交
2110

W
wKyrong 已提交
2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146
let genKeyProperties = new Array();
genKeyProperties[0] = {
    tag: huks.HuksTag.HUKS_TAG_ALGORITHM,
    value: huks.HuksKeyAlg.HUKS_ALG_RSA
};
genKeyProperties[1] = {
    tag: huks.HuksTag.HUKS_TAG_KEY_STORAGE_FLAG,
    value: huks.HuksKeyStorageType.HUKS_STORAGE_PERSISTENT
};
genKeyProperties[2] = {
    tag: huks.HuksTag.HUKS_TAG_KEY_SIZE,
    value: huks.HuksKeySize.HUKS_RSA_KEY_SIZE_2048
};
genKeyProperties[3] = {
    tag: huks.HuksTag.HUKS_TAG_PURPOSE,
    value: huks.HuksKeyPurpose.HUKS_KEY_PURPOSE_VERIFY
};
genKeyProperties[4] = {
    tag: huks.HuksTag.HUKS_TAG_DIGEST,
    value: huks.HuksKeyDigest.HUKS_DIGEST_SHA256
};
genKeyProperties[5] = {
    tag: huks.HuksTag.HUKS_TAG_PADDING,
    value: huks.HuksKeyPadding.HUKS_PADDING_PSS
};
genKeyProperties[6] = {
    tag: huks.HuksTag.HUKS_TAG_KEY_GENERATE_TYPE,
    value: huks.HuksKeyGenerateType.HUKS_KEY_GENERATE_TYPE_DEFAULT
};
genKeyProperties[7] = {
    tag: huks.HuksTag.HUKS_TAG_BLOCK_MODE,
    value: huks.HuksCipherMode.HUKS_MODE_ECB
};
let genOptions = {
    properties: genKeyProperties
};
Z
zhangcheng 已提交
2147

W
wKyrong 已提交
2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167
let attestKeyproperties = new Array();
attestKeyproperties[0] = {
    tag: huks.HuksTag.HUKS_TAG_ATTESTATION_ID_SEC_LEVEL_INFO,
    value: securityLevel
};
attestKeyproperties[1] = {
    tag: huks.HuksTag.HUKS_TAG_ATTESTATION_CHALLENGE,
    value: challenge
};
attestKeyproperties[2] = {
    tag: huks.HuksTag.HUKS_TAG_ATTESTATION_ID_VERSION_INFO,
    value: versionInfo
};
attestKeyproperties[3] = {
    tag: huks.HuksTag.HUKS_TAG_ATTESTATION_ID_ALIAS,
    value: aliasUint8
};
let huksOptions = {
    properties: attestKeyproperties
};
Z
zhangcheng 已提交
2168 2169

function StringToUint8Array(str) {
Z
zhangcheng 已提交
2170 2171
    let arr = [];
    for (let i = 0, j = str.length; i < j; ++i) {
Z
zhangcheng 已提交
2172
        arr.push(str.charCodeAt(i));
Z
zhangcheng 已提交
2173
    }
Z
zhangcheng 已提交
2174 2175 2176
    return new Uint8Array(arr);
}

W
wKyrong 已提交
2177
function generateKeyItem(keyAlias:string, huksOptions:huks.HuksOptions, throwObject) {
Z
zhangcheng 已提交
2178 2179 2180 2181 2182 2183 2184 2185 2186 2187
    return new Promise((resolve, reject) => {
        try {
            huks.generateKeyItem(keyAlias, huksOptions, function (error, data) {
                if (error) {
                    reject(error);
                } else {
                    resolve(data);
                }
            });
        } catch (error) {
W
wKyrong 已提交
2188
            throwObject.isThrow = true;
Z
zhangcheng 已提交
2189 2190 2191 2192 2193
            throw(error);
        }
    });
}

W
wKyrong 已提交
2194 2195 2196
async function publicGenKeyFunc(keyAlias:string, huksOptions:huks.HuksOptions) {
    console.info(`enter callback generateKeyItem`);
    let throwObject = {isThrow: false};
Z
zhangcheng 已提交
2197
    try {
W
wKyrong 已提交
2198 2199 2200
        await generateKeyItem(keyAlias, huksOptions, throwObject)
            .then((data) => {
                console.info(`callback: generateKeyItem success, data = ${JSON.stringify(data)}`);
Z
zhangcheng 已提交
2201 2202
            })
            .catch(error => {
W
wKyrong 已提交
2203 2204 2205 2206 2207
                if (throwObject.isThrow) {
                    throw(error);
                } else {
                    console.error(`callback: generateKeyItem failed, code: ${error.code}, msg: ${error.message}`);
                }
Z
zhangcheng 已提交
2208 2209
            });
    } catch (error) {
W
wKyrong 已提交
2210
        console.error(`callback: generateKeyItem input arg invalid, code: ${error.code}, msg: ${error.message}`);
Z
zhangcheng 已提交
2211 2212 2213
    }
}

W
wKyrong 已提交
2214
function attestKeyItem(keyAlias:string, huksOptions:huks.HuksOptions, throwObject) : Promise<huks.HuksReturnResult>{
Z
zhangcheng 已提交
2215 2216 2217 2218 2219 2220 2221 2222 2223 2224
    return new Promise((resolve, reject) => {
        try {
            huks.attestKeyItem(keyAlias, huksOptions, function (error, data) {
                if (error) {
                    reject(error);
                } else {
                    resolve(data);
                }
            });
        } catch (error) {
W
wKyrong 已提交
2225
            throwObject.isThrow = true;
Z
zhangcheng 已提交
2226 2227 2228 2229 2230
            throw(error);
        }
    });
}

W
wKyrong 已提交
2231 2232 2233
async function publicAttestKey(keyAlias:string, huksOptions:huks.HuksOptions) {
    console.info(`enter callback attestKeyItem`);
    let throwObject = {isThrow: false};
Z
zhangcheng 已提交
2234
    try {
W
wKyrong 已提交
2235
        await attestKeyItem(keyAlias, huksOptions, throwObject)
Z
zhangcheng 已提交
2236
            .then ((data) => {
W
wKyrong 已提交
2237 2238 2239 2240
                console.info(`callback: attestKeyItem success, data = ${JSON.stringify(data)}`);
                if (data !== null && data.certChains !== null) {
                    attestCertChain = data.certChains;
                }
Z
zhangcheng 已提交
2241 2242
            })
            .catch(error => {
W
wKyrong 已提交
2243 2244 2245 2246 2247
                if (throwObject.isThrow) {
                    throw(error);
                } else {
                    console.error(`callback: attestKeyItem failed, code: ${error.code}, msg: ${error.message}`);
                }
Z
zhangcheng 已提交
2248 2249
            });
    } catch (error) {
W
wKyrong 已提交
2250
        console.error(`callback: attestKeyItem input arg invalid, code: ${error.code}, msg: ${error.message}`);
Z
zhangcheng 已提交
2251
    }
Z
zhangcheng 已提交
2252 2253
}

W
wKyrong 已提交
2254 2255 2256 2257 2258
async function AttestKeyTest() {
    await publicGenKeyFunc(aliasString, genOptions);

    await publicAttestKey(aliasString, huksOptions);
    console.info('attest certChain data: ' + attestCertChain)
Z
zhangcheng 已提交
2259
}
W
wKyrong 已提交
2260
```
Z
zhangcheng 已提交
2261

W
wKyrong 已提交
2262
> 常见问题
Z
zhangcheng 已提交
2263

W
wKyrong 已提交
2264
1. Cannot find name 'huks'.
Z
zhangcheng 已提交
2265

W
wKyrong 已提交
2266
   不能找到huks,使用了接口函数但没导入security.huks.d.ts,添加import huks from '@ohos.security.huks';即可。
Z
zhangcheng 已提交
2267

W
wKyrong 已提交
2268
2. Property 'finishSession' does not exist on type 'typeof huks'. Did you mean 'finish'?
Z
zengyawen 已提交
2269

W
wKyrong 已提交
2270
   不能在huks库中找到finishSession,finishSession是API9版本的,请更新SDK版本或替换新版本的security.huks.d.ts文件。