Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Docs
提交
ffa6f0d4
D
Docs
项目概览
OpenHarmony
/
Docs
1 年多 前同步成功
通知
159
Star
292
Fork
28
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
D
Docs
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
未验证
提交
ffa6f0d4
编写于
10月 27, 2022
作者:
O
openharmony_ci
提交者:
Gitee
10月 27, 2022
浏览文件
操作
浏览文件
下载
差异文件
!10981 新增导入demo
Merge pull request !10981 from zhangcheng/master
上级
b53939eb
8911c6fe
变更
1
显示空白变更内容
内联
并排
Showing
1 changed file
with
460 addition
and
77 deletion
+460
-77
zh-cn/application-dev/security/huks-guidelines.md
zh-cn/application-dev/security/huks-guidelines.md
+460
-77
未找到文件。
zh-cn/application-dev/security/huks-guidelines.md
浏览文件 @
ffa6f0d4
...
@@ -41,9 +41,9 @@ RSA512, RSA768, RSA1024, RSA2048, RSA3072, RSA4096, ECC224, ECC256, ECC384, ECC5
...
@@ -41,9 +41,9 @@ RSA512, RSA768, RSA1024, RSA2048, RSA3072, RSA4096, ECC224, ECC256, ECC384, ECC5
在使用示例前,需要先了解几个预先定义的变量:
在使用示例前,需要先了解几个预先定义的变量:
| 参数名 | 类型 | 必填 | 说明 |
| 参数名 | 类型 | 必填 | 说明 |
| --------------
---
| ----------- | ---- | ------------------------ |
| -------------- | ----------- | ---- | ------------------------ |
|
srcKeyAlias
| string | 是 | 生成密钥别名。 |
|
exportKeyAlias
| string | 是 | 生成密钥别名。 |
|
srcKeyAliasSecond
| string | 是 | 导入密钥别名。 |
|
importKeyAlias
| string | 是 | 导入密钥别名。 |
| huksOptions | HuksOptions | 是 | 用于存放生成key所需TAG。 |
| huksOptions | HuksOptions | 是 | 用于存放生成key所需TAG。 |
| encryptOptions | HuksOptions | 是 | 用于存放导入key所需TAG。 |
| encryptOptions | HuksOptions | 是 | 用于存放导入key所需TAG。 |
...
@@ -52,7 +52,7 @@ RSA512, RSA768, RSA1024, RSA2048, RSA3072, RSA4096, ECC224, ECC256, ECC384, ECC5
...
@@ -52,7 +52,7 @@ RSA512, RSA768, RSA1024, RSA2048, RSA3072, RSA4096, ECC224, ECC256, ECC384, ECC5
**示例:**
**示例:**
```
ts
```
ts
/* 以导出RSA512密钥及导入ECC256密钥为例 */
/* 以导出RSA512密钥及导入
DH2048密钥、RSA512密钥、x25519密钥、
ECC256密钥为例 */
import
huks
from
'
@ohos.security.huks
'
;
import
huks
from
'
@ohos.security.huks
'
;
function
StringToUint8Array
(
str
)
{
function
StringToUint8Array
(
str
)
{
...
@@ -63,7 +63,26 @@ function StringToUint8Array(str) {
...
@@ -63,7 +63,26 @@ function StringToUint8Array(str) {
return
new
Uint8Array
(
arr
);
return
new
Uint8Array
(
arr
);
}
}
async
function
publicGenKeyFunc
(
keyAlias
:
string
,
huksOptions
:
huks
.
HuksOptions
)
{
function
Uint8ArrayToString
(
fileData
)
{
let
dataString
=
''
;
for
(
let
i
=
0
;
i
<
fileData
.
length
;
i
++
)
{
dataString
+=
String
.
fromCharCode
(
fileData
[
i
]);
}
return
dataString
;
}
function
Uint32ToUint8
(
value
)
{
let
arr
=
new
Uint8Array
(
4
*
value
.
length
);
for
(
let
i
=
0
,
j
=
value
.
length
;
i
<
j
;
i
++
)
{
arr
[
i
*
4
+
3
]
=
(
value
[
i
]
>>
24
)
&
0xFF
;
arr
[
i
*
4
+
2
]
=
(
value
[
i
]
>>
16
)
&
0xFF
;
arr
[
i
*
4
+
1
]
=
(
value
[
i
]
>>
8
)
&
0xFF
;
arr
[
i
*
4
]
=
(
value
[
i
])
&
0xFF
;
}
return
arr
;
}
async
function
publicGenKeyFunc
(
keyAlias
:
string
,
huksOptions
:
huks
.
HuksOptions
)
{
console
.
info
(
`enter callback generateKeyItem`
);
console
.
info
(
`enter callback generateKeyItem`
);
try
{
try
{
await
generateKeyItem
(
keyAlias
,
huksOptions
)
await
generateKeyItem
(
keyAlias
,
huksOptions
)
...
@@ -78,7 +97,7 @@ async function publicGenKeyFunc(keyAlias:string, huksOptions:huks.HuksOptions) {
...
@@ -78,7 +97,7 @@ async function publicGenKeyFunc(keyAlias:string, huksOptions:huks.HuksOptions) {
}
}
}
}
function
generateKeyItem
(
keyAlias
:
string
,
huksOptions
:
huks
.
HuksOptions
)
{
function
generateKeyItem
(
keyAlias
:
string
,
huksOptions
:
huks
.
HuksOptions
)
{
return
new
Promise
((
resolve
,
reject
)
=>
{
return
new
Promise
((
resolve
,
reject
)
=>
{
try
{
try
{
huks
.
generateKeyItem
(
keyAlias
,
huksOptions
,
function
(
error
,
data
)
{
huks
.
generateKeyItem
(
keyAlias
,
huksOptions
,
function
(
error
,
data
)
{
...
@@ -89,20 +108,17 @@ function generateKeyItem(keyAlias:string, huksOptions:huks.HuksOptions) {
...
@@ -89,20 +108,17 @@ function generateKeyItem(keyAlias:string, huksOptions:huks.HuksOptions) {
}
}
});
});
}
catch
(
error
)
{
}
catch
(
error
)
{
throw
(
error
);
throw
(
error
);
}
}
});
});
}
}
async
function
publicExportKeyFunc
(
keyAlias
:
string
,
huksOptions
:
huks
.
HuksOptions
)
{
async
function
publicExportKeyFunc
(
keyAlias
:
string
,
huksOptions
:
huks
.
HuksOptions
)
{
console
.
info
(
`enter callback export`
);
console
.
info
(
`enter callback export`
);
try
{
try
{
await
exportKeyItem
(
keyAlias
,
huksOptions
)
await
exportKeyItem
(
keyAlias
,
huksOptions
)
.
then
((
data
)
=>
{
.
then
((
data
)
=>
{
console
.
info
(
`callback: exportKeyItem success, data =
${
JSON
.
stringify
(
data
)}
`
);
console
.
info
(
`callback: exportKeyItem success, data =
${
JSON
.
stringify
(
data
)}
`
);
if
(
data
.
outData
!==
null
)
{
exportKey
=
data
.
outData
;
}
})
})
.
catch
(
error
=>
{
.
catch
(
error
=>
{
console
.
error
(
`callback: exportKeyItem failed, code:
${
error
.
code
}
, msg:
${
error
.
message
}
`
);
console
.
error
(
`callback: exportKeyItem failed, code:
${
error
.
code
}
, msg:
${
error
.
message
}
`
);
...
@@ -112,7 +128,7 @@ async function publicExportKeyFunc(keyAlias:string, huksOptions:huks.HuksOptions
...
@@ -112,7 +128,7 @@ async function publicExportKeyFunc(keyAlias:string, huksOptions:huks.HuksOptions
}
}
}
}
function
exportKeyItem
(
keyAlias
:
string
,
huksOptions
:
huks
.
HuksOptions
)
:
Promise
<
huks
.
HuksReturnResult
>
{
function
exportKeyItem
(
keyAlias
:
string
,
huksOptions
:
huks
.
HuksOptions
)
:
Promise
<
huks
.
HuksReturnResult
>
{
return
new
Promise
((
resolve
,
reject
)
=>
{
return
new
Promise
((
resolve
,
reject
)
=>
{
try
{
try
{
huks
.
exportKeyItem
(
keyAlias
,
huksOptions
,
function
(
error
,
data
)
{
huks
.
exportKeyItem
(
keyAlias
,
huksOptions
,
function
(
error
,
data
)
{
...
@@ -123,16 +139,16 @@ function exportKeyItem(keyAlias:string, huksOptions:huks.HuksOptions) : Promise<
...
@@ -123,16 +139,16 @@ function exportKeyItem(keyAlias:string, huksOptions:huks.HuksOptions) : Promise<
}
}
});
});
}
catch
(
error
)
{
}
catch
(
error
)
{
throw
(
error
);
throw
(
error
);
}
}
});
});
}
}
async
function
publicImportKeyFunc
(
keyAlias
:
string
,
huksOptions
:
huks
.
HuksOptions
)
{
async
function
publicImportKeyFunc
(
keyAlias
:
string
,
huksOptions
:
huks
.
HuksOptions
)
{
console
.
info
(
`enter promise importKeyItem`
);
console
.
info
(
`enter promise importKeyItem`
);
try
{
try
{
await
importKeyItem
(
keyAlias
,
huksOptions
)
await
importKeyItem
(
keyAlias
,
huksOptions
)
.
then
((
data
)
=>
{
.
then
((
data
)
=>
{
console
.
info
(
`callback: importKeyItem success, data =
${
JSON
.
stringify
(
data
)}
`
);
console
.
info
(
`callback: importKeyItem success, data =
${
JSON
.
stringify
(
data
)}
`
);
})
})
.
catch
(
error
=>
{
.
catch
(
error
=>
{
...
@@ -143,7 +159,7 @@ async function publicImportKeyFunc(keyAlias:string, huksOptions:huks.HuksOptions
...
@@ -143,7 +159,7 @@ async function publicImportKeyFunc(keyAlias:string, huksOptions:huks.HuksOptions
}
}
}
}
function
importKeyItem
(
keyAlias
:
string
,
huksOptions
:
huks
.
HuksOptions
)
{
function
importKeyItem
(
keyAlias
:
string
,
huksOptions
:
huks
.
HuksOptions
)
{
return
new
Promise
((
resolve
,
reject
)
=>
{
return
new
Promise
((
resolve
,
reject
)
=>
{
try
{
try
{
huks
.
importKeyItem
(
keyAlias
,
huksOptions
,
function
(
error
,
data
)
{
huks
.
importKeyItem
(
keyAlias
,
huksOptions
,
function
(
error
,
data
)
{
...
@@ -154,16 +170,16 @@ function importKeyItem(keyAlias:string, huksOptions:huks.HuksOptions) {
...
@@ -154,16 +170,16 @@ function importKeyItem(keyAlias:string, huksOptions:huks.HuksOptions) {
}
}
});
});
}
catch
(
error
)
{
}
catch
(
error
)
{
throw
(
error
);
throw
(
error
);
}
}
});
});
}
}
async
function
publicDeleteKeyFunc
(
keyAlias
:
string
,
huksOptions
:
huks
.
HuksOptions
)
{
async
function
publicDeleteKeyFunc
(
keyAlias
:
string
,
huksOptions
:
huks
.
HuksOptions
)
{
console
.
info
(
`enter callback deleteKeyItem`
);
console
.
info
(
`enter callback deleteKeyItem`
);
try
{
try
{
await
deleteKeyItem
(
keyAlias
,
huksOptions
)
await
deleteKeyItem
(
keyAlias
,
huksOptions
)
.
then
((
data
)
=>
{
.
then
((
data
)
=>
{
console
.
info
(
`callback: deleteKeyItem key success, data =
${
JSON
.
stringify
(
data
)}
`
);
console
.
info
(
`callback: deleteKeyItem key success, data =
${
JSON
.
stringify
(
data
)}
`
);
})
})
.
catch
(
error
=>
{
.
catch
(
error
=>
{
...
@@ -174,7 +190,7 @@ async function publicDeleteKeyFunc(keyAlias:string, huksOptions:huks.HuksOptions
...
@@ -174,7 +190,7 @@ async function publicDeleteKeyFunc(keyAlias:string, huksOptions:huks.HuksOptions
}
}
}
}
function
deleteKeyItem
(
keyAlias
:
string
,
huksOptions
:
huks
.
HuksOptions
)
{
function
deleteKeyItem
(
keyAlias
:
string
,
huksOptions
:
huks
.
HuksOptions
)
{
return
new
Promise
((
resolve
,
reject
)
=>
{
return
new
Promise
((
resolve
,
reject
)
=>
{
try
{
try
{
huks
.
deleteKeyItem
(
keyAlias
,
huksOptions
,
function
(
error
,
data
)
{
huks
.
deleteKeyItem
(
keyAlias
,
huksOptions
,
function
(
error
,
data
)
{
...
@@ -185,52 +201,41 @@ function deleteKeyItem(keyAlias:string, huksOptions:huks.HuksOptions) {
...
@@ -185,52 +201,41 @@ function deleteKeyItem(keyAlias:string, huksOptions:huks.HuksOptions) {
}
}
});
});
}
catch
(
error
)
{
}
catch
(
error
)
{
throw
(
error
);
throw
(
error
);
}
}
});
});
}
}
let
srcKeyAlias
=
'
hukRsaKeyAlias
'
;
//导出RSA密钥
let
srcKeyAliasSecond
=
'
huksRsaKeyAliasSecond
'
;
async
function
testExportRsa
()
{
let
exportKey
;
let
exportKeyAlias
=
'
export_rsa_key
'
;
let
inputEccPair
=
new
Uint8Array
([
0x02
,
0x00
,
0x00
,
0x00
,
0x00
,
0x01
,
0x00
,
0x00
,
0x20
,
0x00
,
0x00
,
0x00
,
0x20
,
0x00
,
0x00
,
0x00
,
0x20
,
0x00
,
0x00
,
0x00
,
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
,
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
,
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
]);
async
function
testImportExport
()
{
/* 集成生成密钥参数集 */
/* 集成生成密钥参数集 */
let
exportProperties
=
new
Array
();
let
exportProperties
=
new
Array
();
exportProperties
[
0
]
=
{
exportProperties
[
0
]
=
{
tag
:
huks
.
HuksTag
.
HUKS_TAG_ALGORITHM
,
tag
:
huks
.
HuksTag
.
HUKS_TAG_ALGORITHM
,
value
:
huks
.
HuksKeyAlg
.
HUKS_ALG_RSA
,
value
:
huks
.
HuksKeyAlg
.
HUKS_ALG_RSA
}
}
exportProperties
[
1
]
=
{
exportProperties
[
1
]
=
{
tag
:
huks
.
HuksTag
.
HUKS_TAG_PURPOSE
,
tag
:
huks
.
HuksTag
.
HUKS_TAG_PURPOSE
,
value
:
value
:
huks
.
HuksKeyPurpose
.
HUKS_KEY_PURPOSE_ENCRYPT
|
huks
.
HuksKeyPurpose
.
HUKS_KEY_PURPOSE_ENCRYPT
|
huks
.
HuksKeyPurpose
.
HUKS_KEY_PURPOSE_DECRYPT
,
huks
.
HuksKeyPurpose
.
HUKS_KEY_PURPOSE_DECRYPT
}
}
exportProperties
[
2
]
=
{
exportProperties
[
2
]
=
{
tag
:
huks
.
HuksTag
.
HUKS_TAG_KEY_SIZE
,
tag
:
huks
.
HuksTag
.
HUKS_TAG_KEY_SIZE
,
value
:
huks
.
HuksKeySize
.
HUKS_RSA_KEY_SIZE_512
,
value
:
huks
.
HuksKeySize
.
HUKS_RSA_KEY_SIZE_512
}
}
exportProperties
[
3
]
=
{
exportProperties
[
3
]
=
{
tag
:
huks
.
HuksTag
.
HUKS_TAG_BLOCK_MODE
,
tag
:
huks
.
HuksTag
.
HUKS_TAG_BLOCK_MODE
,
value
:
huks
.
HuksCipherMode
.
HUKS_MODE_ECB
,
value
:
huks
.
HuksCipherMode
.
HUKS_MODE_ECB
}
}
exportProperties
[
4
]
=
{
exportProperties
[
4
]
=
{
tag
:
huks
.
HuksTag
.
HUKS_TAG_PADDING
,
tag
:
huks
.
HuksTag
.
HUKS_TAG_PADDING
,
value
:
huks
.
HuksKeyPadding
.
HUKS_PADDING_PKCS1_V1_5
,
value
:
huks
.
HuksKeyPadding
.
HUKS_PADDING_PKCS1_V1_5
}
}
exportProperties
[
5
]
=
{
exportProperties
[
5
]
=
{
tag
:
huks
.
HuksTag
.
HUKS_TAG_DIGEST
,
tag
:
huks
.
HuksTag
.
HUKS_TAG_DIGEST
,
value
:
huks
.
HuksKeyDigest
.
HUKS_DIGEST_SHA256
,
value
:
huks
.
HuksKeyDigest
.
HUKS_DIGEST_SHA256
}
}
let
huksOptions
=
{
let
huksOptions
=
{
properties
:
exportProperties
,
properties
:
exportProperties
,
...
@@ -238,43 +243,369 @@ async function testImportExport() {
...
@@ -238,43 +243,369 @@ async function testImportExport() {
}
}
/* 生成密钥 */
/* 生成密钥 */
await
publicGenKeyFunc
(
src
KeyAlias
,
huksOptions
);
await
publicGenKeyFunc
(
export
KeyAlias
,
huksOptions
);
/* 导出密钥 */
/* 导出密钥 */
await
publicExportKeyFunc
(
srcKeyAlias
,
huksOptions
);
await
publicExportKeyFunc
(
exportKeyAlias
,
huksOptions
);
await
publicDeleteKeyFunc
(
exportKeyAlias
,
huksOptions
);
}
//DH密钥
let
g_dhPubData
=
new
Uint8Array
([
0x8a
,
0xbf
,
0x16
,
0x67
,
0x1b
,
0x92
,
0x4b
,
0xf2
,
0xe0
,
0x02
,
0xc5
,
0x1f
,
0x84
,
0x00
,
0xf8
,
0x93
,
0x0f
,
0x74
,
0xe7
,
0x0f
,
0xba
,
0x78
,
0x30
,
0xa8
,
0x2d
,
0x92
,
0xef
,
0x9b
,
0x80
,
0xeb
,
0x76
,
0xea
,
0x26
,
0x74
,
0x72
,
0x63
,
0x6a
,
0x27
,
0xc3
,
0x8f
,
0xcf
,
0xbe
,
0x82
,
0xa2
,
0x8b
,
0xdc
,
0x65
,
0x58
,
0xe3
,
0xff
,
0x29
,
0x97
,
0xad
,
0xb3
,
0x4a
,
0x2c
,
0x50
,
0x08
,
0xb5
,
0x68
,
0xe1
,
0x90
,
0x5a
,
0xdc
,
0x48
,
0xb3
,
0x6b
,
0x7a
,
0xce
,
0x2e
,
0x81
,
0x3d
,
0x38
,
0x35
,
0x59
,
0xdc
,
0x39
,
0x8a
,
0x97
,
0xfe
,
0x20
,
0x86
,
0x20
,
0xdb
,
0x55
,
0x38
,
0x23
,
0xca
,
0xb5
,
0x5b
,
0x61
,
0x00
,
0xdc
,
0x45
,
0xe2
,
0xa1
,
0xf4
,
0x1e
,
0x7b
,
0x01
,
0x7a
,
0x84
,
0x36
,
0xa4
,
0xa8
,
0x1c
,
0x0d
,
0x3d
,
0xde
,
0x57
,
0x66
,
0x73
,
0x4e
,
0xaf
,
0xee
,
0xb0
,
0xb0
,
0x69
,
0x0c
,
0x13
,
0xba
,
0x76
,
0xff
,
0x2e
,
0xb6
,
0x16
,
0xf9
,
0xfc
,
0xd6
,
0x09
,
0x5b
,
0xc7
,
0x37
,
0x65
,
0x84
,
0xd5
,
0x82
,
0x8a
,
0xd7
,
0x5b
,
0x57
,
0xe3
,
0x0e
,
0x89
,
0xbe
,
0x05
,
0x05
,
0x55
,
0x2e
,
0x9f
,
0x94
,
0x8a
,
0x53
,
0xdc
,
0xb7
,
0x00
,
0xb2
,
0x6a
,
0x7b
,
0x8e
,
0xdf
,
0x6e
,
0xa4
,
0x6d
,
0x13
,
0xb6
,
0xbc
,
0xaa
,
0x8e
,
0x44
,
0x11
,
0x50
,
0x32
,
0x91
,
0x56
,
0xa2
,
0x22
,
0x3f
,
0x2f
,
0x08
,
0xbb
,
0x4d
,
0xbb
,
0x69
,
0xe6
,
0xb1
,
0xc2
,
0x70
,
0x79
,
0x15
,
0x54
,
0xad
,
0x4a
,
0x29
,
0xef
,
0xa9
,
0x3e
,
0x64
,
0x8d
,
0xf1
,
0x90
,
0xf4
,
0xa7
,
0x93
,
0x8c
,
0x7a
,
0x02
,
0x4d
,
0x38
,
0x1f
,
0x58
,
0xb8
,
0xe4
,
0x7c
,
0xe1
,
0x66
,
0x1c
,
0x72
,
0x30
,
0xf3
,
0x4c
,
0xf4
,
0x24
,
0xd1
,
0x2d
,
0xb7
,
0xf1
,
0x5a
,
0x0f
,
0xb8
,
0x20
,
0xc5
,
0x90
,
0xe5
,
0xca
,
0x45
,
0x84
,
0x5c
,
0x08
,
0x08
,
0xbf
,
0xf9
,
0x69
,
0x41
,
0xf5
,
0x49
,
0x85
,
0x31
,
0x35
,
0x14
,
0x69
,
0x12
,
0x57
,
0x9c
,
0xc8
,
0xb7
]);
let
g_dhPriData
=
new
Uint8Array
([
0x01
,
0xbc
,
0xa7
,
0x42
,
0x25
,
0x79
,
0xc5
,
0xaf
,
0x0f
,
0x9c
,
0xde
,
0x00
,
0x3b
,
0x58
,
0x5c
,
0xd1
,
0x1d
,
0x7b
,
0xcf
,
0x66
,
0xcd
,
0xa9
,
0x10
,
0xae
,
0x92
,
0x2d
,
0x3c
,
0xb7
,
0xf3
]);
let
g_dhX509PubData
=
new
Uint8Array
([
0x30
,
0x82
,
0x02
,
0x29
,
0x30
,
0x82
,
0x01
,
0x1b
,
0x06
,
0x09
,
0x2a
,
0x86
,
0x48
,
0x86
,
0xf7
,
0x0d
,
0x01
,
0x03
,
0x01
,
0x30
,
0x82
,
0x01
,
0x0c
,
0x02
,
0x82
,
0x01
,
0x01
,
0x00
,
0xff
,
0xff
,
0xff
,
0xff
,
0xff
,
0xff
,
0xff
,
0xff
,
0xad
,
0xf8
,
0x54
,
0x58
,
0xa2
,
0xbb
,
0x4a
,
0x9a
,
0xaf
,
0xdc
,
0x56
,
0x20
,
0x27
,
0x3d
,
0x3c
,
0xf1
,
0xd8
,
0xb9
,
0xc5
,
0x83
,
0xce
,
0x2d
,
0x36
,
0x95
,
0xa9
,
0xe1
,
0x36
,
0x41
,
0x14
,
0x64
,
0x33
,
0xfb
,
0xcc
,
0x93
,
0x9d
,
0xce
,
0x24
,
0x9b
,
0x3e
,
0xf9
,
0x7d
,
0x2f
,
0xe3
,
0x63
,
0x63
,
0x0c
,
0x75
,
0xd8
,
0xf6
,
0x81
,
0xb2
,
0x02
,
0xae
,
0xc4
,
0x61
,
0x7a
,
0xd3
,
0xdf
,
0x1e
,
0xd5
,
0xd5
,
0xfd
,
0x65
,
0x61
,
0x24
,
0x33
,
0xf5
,
0x1f
,
0x5f
,
0x06
,
0x6e
,
0xd0
,
0x85
,
0x63
,
0x65
,
0x55
,
0x3d
,
0xed
,
0x1a
,
0xf3
,
0xb5
,
0x57
,
0x13
,
0x5e
,
0x7f
,
0x57
,
0xc9
,
0x35
,
0x98
,
0x4f
,
0x0c
,
0x70
,
0xe0
,
0xe6
,
0x8b
,
0x77
,
0xe2
,
0xa6
,
0x89
,
0xda
,
0xf3
,
0xef
,
0xe8
,
0x72
,
0x1d
,
0xf1
,
0x58
,
0xa1
,
0x36
,
0xad
,
0xe7
,
0x35
,
0x30
,
0xac
,
0xca
,
0x4f
,
0x48
,
0x3a
,
0x79
,
0x7a
,
0xbc
,
0x0a
,
0xb1
,
0x82
,
0xb3
,
0x24
,
0xfb
,
0x61
,
0xd1
,
0x08
,
0xa9
,
0x4b
,
0xb2
,
0xc8
,
0xe3
,
0xfb
,
0xb9
,
0x6a
,
0xda
,
0xb7
,
0x60
,
0xd7
,
0xf4
,
0x68
,
0x1d
,
0x4f
,
0x42
,
0xa3
,
0xde
,
0x39
,
0x4d
,
0xf4
,
0xae
,
0x56
,
0xed
,
0xe7
,
0x63
,
0x72
,
0xbb
,
0x19
,
0x0b
,
0x07
,
0xa7
,
0xc8
,
0xee
,
0x0a
,
0x6d
,
0x70
,
0x9e
,
0x02
,
0xfc
,
0xe1
,
0xcd
,
0xf7
,
0xe2
,
0xec
,
0xc0
,
0x34
,
0x04
,
0xcd
,
0x28
,
0x34
,
0x2f
,
0x61
,
0x91
,
0x72
,
0xfe
,
0x9c
,
0xe9
,
0x85
,
0x83
,
0xff
,
0x8e
,
0x4f
,
0x12
,
0x32
,
0xee
,
0xf2
,
0x81
,
0x83
,
0xc3
,
0xfe
,
0x3b
,
0x1b
,
0x4c
,
0x6f
,
0xad
,
0x73
,
0x3b
,
0xb5
,
0xfc
,
0xbc
,
0x2e
,
0xc2
,
0x20
,
0x05
,
0xc5
,
0x8e
,
0xf1
,
0x83
,
0x7d
,
0x16
,
0x83
,
0xb2
,
0xc6
,
0xf3
,
0x4a
,
0x26
,
0xc1
,
0xb2
,
0xef
,
0xfa
,
0x88
,
0x6b
,
0x42
,
0x38
,
0x61
,
0x28
,
0x5c
,
0x97
,
0xff
,
0xff
,
0xff
,
0xff
,
0xff
,
0xff
,
0xff
,
0xff
,
0x02
,
0x01
,
0x02
,
0x02
,
0x02
,
0x00
,
0xe1
,
0x03
,
0x82
,
0x01
,
0x06
,
0x00
,
0x02
,
0x82
,
0x01
,
0x01
,
0x00
,
0x8a
,
0xbf
,
0x16
,
0x67
,
0x1b
,
0x92
,
0x4b
,
0xf2
,
0xe0
,
0x02
,
0xc5
,
0x1f
,
0x84
,
0x00
,
0xf8
,
0x93
,
0x0f
,
0x74
,
0xe7
,
0x0f
,
0xba
,
0x78
,
0x30
,
0xa8
,
0x2d
,
0x92
,
0xef
,
0x9b
,
0x80
,
0xeb
,
0x76
,
0xea
,
0x26
,
0x74
,
0x72
,
0x63
,
0x6a
,
0x27
,
0xc3
,
0x8f
,
0xcf
,
0xbe
,
0x82
,
0xa2
,
0x8b
,
0xdc
,
0x65
,
0x58
,
0xe3
,
0xff
,
0x29
,
0x97
,
0xad
,
0xb3
,
0x4a
,
0x2c
,
0x50
,
0x08
,
0xb5
,
0x68
,
0xe1
,
0x90
,
0x5a
,
0xdc
,
0x48
,
0xb3
,
0x6b
,
0x7a
,
0xce
,
0x2e
,
0x81
,
0x3d
,
0x38
,
0x35
,
0x59
,
0xdc
,
0x39
,
0x8a
,
0x97
,
0xfe
,
0x20
,
0x86
,
0x20
,
0xdb
,
0x55
,
0x38
,
0x23
,
0xca
,
0xb5
,
0x5b
,
0x61
,
0x00
,
0xdc
,
0x45
,
0xe2
,
0xa1
,
0xf4
,
0x1e
,
0x7b
,
0x01
,
0x7a
,
0x84
,
0x36
,
0xa4
,
0xa8
,
0x1c
,
0x0d
,
0x3d
,
0xde
,
0x57
,
0x66
,
0x73
,
0x4e
,
0xaf
,
0xee
,
0xb0
,
0xb0
,
0x69
,
0x0c
,
0x13
,
0xba
,
0x76
,
0xff
,
0x2e
,
0xb6
,
0x16
,
0xf9
,
0xfc
,
0xd6
,
0x09
,
0x5b
,
0xc7
,
0x37
,
0x65
,
0x84
,
0xd5
,
0x82
,
0x8a
,
0xd7
,
0x5b
,
0x57
,
0xe3
,
0x0e
,
0x89
,
0xbe
,
0x05
,
0x05
,
0x55
,
0x2e
,
0x9f
,
0x94
,
0x8a
,
0x53
,
0xdc
,
0xb7
,
0x00
,
0xb2
,
0x6a
,
0x7b
,
0x8e
,
0xdf
,
0x6e
,
0xa4
,
0x6d
,
0x13
,
0xb6
,
0xbc
,
0xaa
,
0x8e
,
0x44
,
0x11
,
0x50
,
0x32
,
0x91
,
0x56
,
0xa2
,
0x22
,
0x3f
,
0x2f
,
0x08
,
0xbb
,
0x4d
,
0xbb
,
0x69
,
0xe6
,
0xb1
,
0xc2
,
0x70
,
0x79
,
0x15
,
0x54
,
0xad
,
0x4a
,
0x29
,
0xef
,
0xa9
,
0x3e
,
0x64
,
0x8d
,
0xf1
,
0x90
,
0xf4
,
0xa7
,
0x93
,
0x8c
,
0x7a
,
0x02
,
0x4d
,
0x38
,
0x1f
,
0x58
,
0xb8
,
0xe4
,
0x7c
,
0xe1
,
0x66
,
0x1c
,
0x72
,
0x30
,
0xf3
,
0x4c
,
0xf4
,
0x24
,
0xd1
,
0x2d
,
0xb7
,
0xf1
,
0x5a
,
0x0f
,
0xb8
,
0x20
,
0xc5
,
0x90
,
0xe5
,
0xca
,
0x45
,
0x84
,
0x5c
,
0x08
,
0x08
,
0xbf
,
0xf9
,
0x69
,
0x41
,
0xf5
,
0x49
,
0x85
,
0x31
,
0x35
,
0x14
,
0x69
,
0x12
,
0x57
,
0x9c
,
0xc8
,
0xb7
]);
//x25519秘钥
let
g_x25519PubData
=
new
Uint8Array
([
0x9c
,
0xf6
,
0x7a
,
0x8d
,
0xce
,
0xc2
,
0x7f
,
0xa7
,
0xd9
,
0xfd
,
0xf1
,
0xad
,
0xac
,
0xf0
,
0xb3
,
0x8c
,
0xe8
,
0x16
,
0xa2
,
0x65
,
0xcc
,
0x18
,
0x55
,
0x60
,
0xcd
,
0x2f
,
0xf5
,
0xe5
,
0x72
,
0xc9
,
0x3c
,
0x54
]);
//x25519公钥
let
g_x25519PriData
=
new
Uint8Array
([
0x20
,
0xd5
,
0xbb
,
0x54
,
0x6f
,
0x1f
,
0x00
,
0x30
,
0x4e
,
0x33
,
0x38
,
0xb9
,
0x8e
,
0x6a
,
0xdf
,
0xad
,
0x33
,
0x6f
,
0x51
,
0x23
,
0xff
,
0x4d
,
0x95
,
0x26
,
0xdc
,
0xb0
,
0x74
,
0xb2
,
0x5c
,
0x7e
,
0x85
,
0x6c
]);
//rsa密钥
let
g_nData
=
new
Uint8Array
([
0xb6
,
0xd8
,
0x9b
,
0x33
,
0x78
,
0xa2
,
0x63
,
0x21
,
0x84
,
0x47
,
0xa1
,
0x72
,
0
x3d
,
0x73
,
0x10
,
0xbd
,
0xe9
,
0x5d
,
0x78
,
0x44
,
0x3d
,
0x80
,
0x18
,
0x12
,
0x60
,
0xed
,
0x29
,
0x3e
,
0xc7
,
0x23
,
0x0d
,
0x3f
,
0x02
,
0x59
,
0x28
,
0xe2
,
0x8f
,
0x83
,
0xdf
,
0x37
,
0x4b
,
0x77
,
0xce
,
0x5f
,
0xb6
,
0xcd
,
0x61
,
0x72
,
0xee
,
0x01
,
0xe2
,
0x37
,
0x4d
,
0xfd
,
0x4f
,
0x39
,
0xcf
,
0xbd
,
0xff
,
0x84
,
0x57
,
0x44
,
0xa5
,
0x03
]);
let
g_eData
=
new
Uint8Array
([
0x01
,
0x00
,
0x01
]);
let
g_dData
=
new
Uint8Array
([
0x35
,
0x63
,
0x89
,
0xed
,
0xbd
,
0x8b
,
0xac
,
0xe6
,
0x5c
,
0x79
,
0x8d
,
0xea
,
0x8d
,
0x86
,
0xcb
,
0x9c
,
0xa8
,
0x47
,
0x62
,
0x96
,
0x8a
,
0x5e
,
0x9c
,
0xa8
,
0xc1
,
0x24
,
0x7e
,
0xa6
,
0x95
,
0xfe
,
0xe6
,
0x1e
,
0xc0
,
0xf3
,
0x29
,
0x76
,
0xbb
,
0x4d
,
0xe4
,
0xbc
,
0x78
,
0x64
,
0xe1
,
0x79
,
0xcd
,
0x8a
,
0x45
,
0xac
,
0x5c
,
0x88
,
0xea
,
0xb4
,
0x10
,
0xd8
,
0x90
,
0x65
,
0x7b
,
0x94
,
0xe8
,
0x87
,
0x30
,
0x2a
,
0x04
,
0x01
]);
let
g_pubData
=
new
Uint8Array
([
0x30
,
0x5c
,
0x30
,
0x0d
,
0x06
,
0x09
,
0x2a
,
0x86
,
0x48
,
0x86
,
0xf7
,
0x0d
,
0x01
,
0x01
,
0x01
,
0x05
,
0x00
,
0x03
,
0x4b
,
0x00
,
0x30
,
0x48
,
0x02
,
0x41
,
0x00
,
0x9e
,
0x93
,
0x57
,
0xc4
,
0xab
,
0xde
,
0x30
,
0xc5
,
0x3f
,
0x3b
,
0x33
,
0xa6
,
0xdc
,
0x4a
,
0xdb
,
0xbf
,
0x12
,
0x9e
,
0x5d
,
0xc4
,
0xba
,
0x0e
,
0x15
,
0x06
,
0x41
,
0xd8
,
0x96
,
0x43
,
0xca
,
0xc5
,
0xea
,
0x9f
,
0xdd
,
0xa0
,
0x2a
,
0xf1
,
0x53
,
0x46
,
0x14
,
0x36
,
0x7a
,
0xab
,
0xbc
,
0x92
,
0x1b
,
0x07
,
0xc6
,
0x9a
,
0x7d
,
0x0c
,
0xd0
,
0xa0
,
0x0f
,
0x31
,
0xd5
,
0x38
,
0x84
,
0x6c
,
0x08
,
0xcb
,
0x9b
,
0x10
,
0xa6
,
0x4d
,
0x02
,
0x03
,
0x01
,
0x00
,
0x01
]);
//ecc密钥
let
g_eccXData
=
new
Uint8Array
([
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
]);
let
g_eccYData
=
new
Uint8Array
([
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
]);
let
g_eccZData
=
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
g_eccPubData
=
new
Uint8Array
([
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
,
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
,
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
]);
//导入DH2048密钥
async
function
ImportDhTest
(
alg
,
keyType
)
{
let
importKeyAlias
=
'
import_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_IMPORT_KEY_TYPE
,
value
:
huks
.
HuksImportKeyType
.
HUKS_KEY_TYPE_PUBLIC_KEY
}
properties
[
4
]
=
{
tag
:
huks
.
HuksTag
.
HUKS_TAG_DIGEST
,
value
:
huks
.
HuksKeyDigest
.
HUKS_DIGEST_SHA256
}
let
huksOptions
=
{
properties
:
properties
,
inData
:
new
Uint8Array
(
new
Array
())
}
huksOptions
.
properties
[
0
].
value
=
alg
;
huksOptions
.
properties
[
3
].
value
=
keyType
;
/* 集成导入密钥参数集 */
//对比密钥类型
let
importProperties
=
new
Array
();
if
(
huksOptions
.
properties
[
3
].
value
===
huks
.
HuksImportKeyType
.
HUKS_KEY_TYPE_KEY_PAIR
)
{
importProperties
[
0
]
=
{
/* 非公钥拼接huksOptions.inData字段,满足以下格式:
* keyAlg的类型(4字节) + key_dh的长度(4字节) +
* g_dhPubData的长度(4字节) + g_dhPriData的长度(4字节) +
* reserved的大小(4字节) + g_dhPubData的数据 + g_dhPriData的数据
*/
// PAIR
let
Material
=
new
Uint32Array
([
huks
.
HuksKeyAlg
.
HUKS_ALG_DH
,
huks
.
HuksKeySize
.
HUKS_DH_KEY_SIZE_2048
,
g_dhPubData
.
length
,
g_dhPriData
.
length
,
0
]);
let
u8Material
=
Uint32ToUint8
(
Material
);
let
strMaterial
=
Uint8ArrayToString
(
u8Material
);
let
strXData
=
strMaterial
.
concat
(
Uint8ArrayToString
(
g_dhPubData
));
let
strData
=
strXData
.
concat
(
Uint8ArrayToString
(
g_dhPriData
));
huksOptions
.
inData
=
StringToUint8Array
(
strData
);
}
else
if
(
huksOptions
.
properties
[
3
].
value
===
huks
.
HuksImportKeyType
.
HUKS_KEY_TYPE_PRIVATE_KEY
)
{
//私钥
let
Material
=
new
Uint32Array
([
huks
.
HuksKeyAlg
.
HUKS_ALG_DH
,
huks
.
HuksKeySize
.
HUKS_DH_KEY_SIZE_2048
,
0
,
g_dhPriData
.
length
,
0
]);
let
u8Material
=
Uint32ToUint8
(
Material
);
let
strMaterial
=
Uint8ArrayToString
(
u8Material
);
let
strData
=
strMaterial
.
concat
(
Uint8ArrayToString
(
g_dhPriData
));
huksOptions
.
inData
=
StringToUint8Array
(
strData
);
}
else
if
(
huksOptions
.
properties
[
3
].
value
===
huks
.
HuksImportKeyType
.
HUKS_KEY_TYPE_PUBLIC_KEY
)
{
//公钥
huksOptions
.
inData
=
g_dhX509PubData
;
}
await
publicImportKeyFunc
(
importKeyAlias
,
huksOptions
);
await
publicDeleteKeyFunc
(
importKeyAlias
,
huksOptions
);
}
//导入ecc256密钥
async
function
ImportEccTest
(
alg
,
keyType
)
{
let
importKeyAlias
=
'
import_ecc_key
'
;
let
properties
=
new
Array
();
properties
[
0
]
=
{
tag
:
huks
.
HuksTag
.
HUKS_TAG_ALGORITHM
,
tag
:
huks
.
HuksTag
.
HUKS_TAG_ALGORITHM
,
value
:
huks
.
HuksKeyAlg
.
HUKS_ALG_ECC
value
:
huks
.
HuksKeyAlg
.
HUKS_ALG_ECC
};
}
importProperties
[
1
]
=
{
properties
[
1
]
=
{
tag
:
huks
.
HuksTag
.
HUKS_TAG_PURPOSE
,
value
:
huks
.
HuksKeyPurpose
.
HUKS_KEY_PURPOSE_AGREE
}
properties
[
2
]
=
{
tag
:
huks
.
HuksTag
.
HUKS_TAG_KEY_SIZE
,
tag
:
huks
.
HuksTag
.
HUKS_TAG_KEY_SIZE
,
value
:
huks
.
HuksKeySize
.
HUKS_ECC_KEY_SIZE_256
value
:
huks
.
HuksKeySize
.
HUKS_ECC_KEY_SIZE_256
};
}
importProperties
[
2
]
=
{
properties
[
3
]
=
{
tag
:
huks
.
HuksTag
.
HUKS_TAG_IMPORT_KEY_TYPE
,
value
:
huks
.
HuksImportKeyType
.
HUKS_KEY_TYPE_KEY_PAIR
}
properties
[
4
]
=
{
tag
:
huks
.
HuksTag
.
HUKS_TAG_DIGEST
,
value
:
huks
.
HuksKeyDigest
.
HUKS_DIGEST_SHA256
}
let
huksOptions
=
{
properties
:
properties
,
inData
:
new
Uint8Array
(
new
Array
())
}
huksOptions
.
properties
[
0
].
value
=
alg
;
huksOptions
.
properties
[
3
].
value
=
keyType
;
//对比密钥类型
if
(
huksOptions
.
properties
[
3
].
value
===
huks
.
HuksImportKeyType
.
HUKS_KEY_TYPE_KEY_PAIR
)
{
/* 非公钥拼接huksOptions.inData字段,满足以下格式:
* keyAlg的类型(4字节) + key_ecc的长度(4字节) +
* g_eccXData的长度(4字节) + g_eccYData的长度(4字节) +
* g_eccZData的长度(4字节) + g_eccXData的数据 +
* g_eccYData的数据 + g_eccZData的数据
*/
//PAIR
let
Material
=
new
Uint32Array
([
huks
.
HuksKeyAlg
.
HUKS_ALG_ECC
,
huks
.
HuksKeySize
.
HUKS_ECC_KEY_SIZE_256
,
g_eccXData
.
length
,
g_eccYData
.
length
,
g_eccZData
.
length
]);
let
u8Material
=
Uint32ToUint8
(
Material
);
let
strMaterial
=
Uint8ArrayToString
(
u8Material
);
let
strXData
=
strMaterial
.
concat
(
Uint8ArrayToString
(
g_eccXData
));
let
strYData
=
strXData
.
concat
(
Uint8ArrayToString
(
g_eccYData
));
let
strData
=
strYData
.
concat
(
Uint8ArrayToString
(
g_eccZData
));
huksOptions
.
inData
=
StringToUint8Array
(
strData
);
}
else
if
(
huksOptions
.
properties
[
3
].
value
===
huks
.
HuksImportKeyType
.
HUKS_KEY_TYPE_PRIVATE_KEY
)
{
//私钥
huksOptions
.
properties
[
3
].
value
==
huks
.
HuksImportKeyType
.
HUKS_KEY_TYPE_PRIVATE_KEY
let
Material
=
new
Uint32Array
([
huks
.
HuksKeyAlg
.
HUKS_ALG_ECC
,
huks
.
HuksKeySize
.
HUKS_ECC_KEY_SIZE_256
,
0
,
0
,
g_eccZData
.
length
]);
let
u8Material
=
Uint32ToUint8
(
Material
);
let
strMaterial
=
Uint8ArrayToString
(
u8Material
);
let
strData
=
strMaterial
.
concat
(
Uint8ArrayToString
(
g_eccZData
));
huksOptions
.
inData
=
StringToUint8Array
(
strData
);
}
else
if
(
huksOptions
.
properties
[
3
].
value
===
huks
.
HuksImportKeyType
.
HUKS_KEY_TYPE_PUBLIC_KEY
)
{
//公钥
huksOptions
.
inData
=
g_eccPubData
;
}
await
publicImportKeyFunc
(
importKeyAlias
,
huksOptions
);
await
publicDeleteKeyFunc
(
importKeyAlias
,
huksOptions
);
}
//导入rsa512密钥
async
function
ImportRsaTest
(
alg
,
keyType
)
{
let
importKeyAlias
=
'
import_rsa_key
'
;
let
properties
=
new
Array
();
properties
[
0
]
=
{
tag
:
huks
.
HuksTag
.
HUKS_TAG_ALGORITHM
,
value
:
huks
.
HuksKeyAlg
.
HUKS_ALG_RSA
}
properties
[
1
]
=
{
tag
:
huks
.
HuksTag
.
HUKS_TAG_PURPOSE
,
tag
:
huks
.
HuksTag
.
HUKS_TAG_PURPOSE
,
value
:
huks
.
HuksKeyPurpose
.
HUKS_KEY_PURPOSE_
UNWRAP
value
:
huks
.
HuksKeyPurpose
.
HUKS_KEY_PURPOSE_
SIGN
}
;
}
importProperties
[
3
]
=
{
properties
[
2
]
=
{
tag
:
huks
.
HuksTag
.
HUKS_TAG_DIGEST
,
tag
:
huks
.
HuksTag
.
HUKS_TAG_DIGEST
,
value
:
huks
.
HuksKeyDigest
.
HUKS_DIGEST_SHA256
value
:
huks
.
HuksKeyDigest
.
HUKS_DIGEST_SHA256
};
}
importProperties
[
4
]
=
{
properties
[
3
]
=
{
tag
:
huks
.
HuksTag
.
HUKS_TAG_PADDING
,
value
:
huks
.
HuksKeyPadding
.
HUKS_PADDING_PSS
}
properties
[
4
]
=
{
tag
:
huks
.
HuksTag
.
HUKS_TAG_KEY_SIZE
,
value
:
huks
.
HuksKeySize
.
HUKS_RSA_KEY_SIZE_512
}
properties
[
5
]
=
{
tag
:
huks
.
HuksTag
.
HUKS_TAG_IMPORT_KEY_TYPE
,
tag
:
huks
.
HuksTag
.
HUKS_TAG_IMPORT_KEY_TYPE
,
value
:
huks
.
HuksImportKeyType
.
HUKS_KEY_TYPE_KEY_PAIR
,
value
:
huks
.
HuksImportKeyType
.
HUKS_KEY_TYPE_KEY_PAIR
};
}
let
importOptions
=
{
let
huksOptions
=
{
properties
:
importProperties
,
properties
:
properties
,
inData
:
inputEccPair
inData
:
new
Uint8Array
(
new
Array
())
};
}
huksOptions
.
properties
[
0
].
value
=
alg
;
huksOptions
.
properties
[
3
].
value
=
keyType
;
/* 导入密钥 */
//对比密钥类型
await
publicImportKeyFunc
(
srcKeyAliasSecond
,
importOptions
);
if
(
huksOptions
.
properties
[
5
].
value
===
huks
.
HuksImportKeyType
.
HUKS_KEY_TYPE_KEY_PAIR
)
{
/* 非公钥拼接huksOptions.inData字段,满足以下格式:
* keyAlg的类型(4字节) + key_rsa的长度(4字节) +
* g_nData的长度(4字节) + g_eData的长度(4字节) +
* g_dData的长度(4字节) + g_nData的数据 +
* g_eData的数据 + g_dData的数据
*/
//PAIR
let
Material
=
new
Uint32Array
([
huks
.
HuksKeyAlg
.
HUKS_ALG_RSA
,
huks
.
HuksKeySize
.
HUKS_RSA_KEY_SIZE_512
,
g_nData
.
length
,
g_eData
.
length
,
g_dData
.
length
]);
let
u8Material
=
Uint32ToUint8
(
Material
);
let
strMaterial
=
Uint8ArrayToString
(
u8Material
);
let
strNData
=
strMaterial
.
concat
(
Uint8ArrayToString
(
g_nData
));
let
strEData
=
strNData
.
concat
(
Uint8ArrayToString
(
g_eData
));
let
strData
=
strEData
.
concat
(
Uint8ArrayToString
(
g_dData
));
huksOptions
.
inData
=
StringToUint8Array
(
strData
);
}
else
if
(
huksOptions
.
properties
[
5
].
value
===
huks
.
HuksImportKeyType
.
HUKS_KEY_TYPE_PRIVATE_KEY
)
{
//私钥
let
Material
=
new
Uint32Array
([
huks
.
HuksKeyAlg
.
HUKS_ALG_RSA
,
huks
.
HuksKeySize
.
HUKS_RSA_KEY_SIZE_512
,
g_nData
.
length
,
0
,
g_dData
.
length
]);
let
u8Material
=
Uint32ToUint8
(
Material
);
let
strMaterial
=
Uint8ArrayToString
(
u8Material
);
let
strNData
=
strMaterial
.
concat
(
Uint8ArrayToString
(
g_nData
));
let
strData
=
strNData
.
concat
(
Uint8ArrayToString
(
g_dData
));
huksOptions
.
inData
=
StringToUint8Array
(
strData
);
}
else
if
(
huksOptions
.
properties
[
5
].
value
===
huks
.
HuksImportKeyType
.
HUKS_KEY_TYPE_PUBLIC_KEY
)
{
//公钥
huksOptions
.
inData
=
g_pubData
;
}
await
publicImportKeyFunc
(
importKeyAlias
,
huksOptions
);
await
publicDeleteKeyFunc
(
importKeyAlias
,
huksOptions
);
}
//导入x25519密钥
async
function
ImportX25519Test
(
alg
,
keyType
)
{
let
importKeyAlias
=
'
import_x25519_key
'
;
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_IMPORT_KEY_TYPE
,
value
:
huks
.
HuksImportKeyType
.
HUKS_KEY_TYPE_KEY_PAIR
}
properties
[
4
]
=
{
tag
:
huks
.
HuksTag
.
HUKS_TAG_DIGEST
,
value
:
huks
.
HuksKeyDigest
.
HUKS_DIGEST_SHA256
}
let
huksOptions
=
{
properties
:
properties
,
inData
:
new
Uint8Array
(
new
Array
())
}
huksOptions
.
properties
[
0
].
value
=
alg
;
huksOptions
.
properties
[
3
].
value
=
keyType
;
await
publicDeleteKeyFunc
(
srcKeyAlias
,
huksOptions
);
//对比密钥类型
await
publicDeleteKeyFunc
(
srcKeyAliasSecond
,
importOptions
);
if
(
huksOptions
.
properties
[
3
].
value
===
huks
.
HuksImportKeyType
.
HUKS_KEY_TYPE_KEY_PAIR
)
{
/* 非公钥拼接huksOptions.inData字段,满足以下格式:
* keyAlg的类型(4字节) + key_x25519的长度(4字节) +
* g_x25519PubData的长度(4字节) + g_x25519PriData的长度(4字节) +
* reserved的大小(4字节) + g_x25519PubData的数据 +
* g_x25519PriData的数据
*/
//PAIR
let
Material
=
new
Uint32Array
([
huks
.
HuksKeyAlg
.
HUKS_ALG_X25519
,
huks
.
HuksKeySize
.
HUKS_CURVE25519_KEY_SIZE_256
,
g_x25519PriData
.
length
,
g_x25519PubData
.
length
,
0
]);
let
u8Material
=
Uint32ToUint8
(
Material
);
let
strMaterial
=
Uint8ArrayToString
(
u8Material
);
let
strXData
=
strMaterial
.
concat
(
Uint8ArrayToString
(
g_x25519PubData
));
let
strData
=
strXData
.
concat
(
Uint8ArrayToString
(
g_x25519PriData
));
huksOptions
.
inData
=
StringToUint8Array
(
strData
);
}
else
if
(
huksOptions
.
properties
[
3
].
value
===
huks
.
HuksImportKeyType
.
HUKS_KEY_TYPE_PRIVATE_KEY
)
{
//私钥
huksOptions
.
inData
=
g_x25519PriData
;
}
else
if
(
huksOptions
.
properties
[
3
].
value
===
huks
.
HuksImportKeyType
.
HUKS_KEY_TYPE_PUBLIC_KEY
)
{
//公钥
huksOptions
.
inData
=
g_x25519PubData
;
}
await
publicImportKeyFunc
(
importKeyAlias
,
huksOptions
);
await
publicDeleteKeyFunc
(
importKeyAlias
,
huksOptions
);
}
}
@
Entry
@
Entry
...
@@ -283,7 +614,7 @@ struct Index {
...
@@ -283,7 +614,7 @@ struct Index {
build
()
{
build
()
{
Flex
({
direction
:
FlexDirection
.
Column
,
alignItems
:
ItemAlign
.
Center
,
justifyContent
:
FlexAlign
.
Center
})
{
Flex
({
direction
:
FlexDirection
.
Column
,
alignItems
:
ItemAlign
.
Center
,
justifyContent
:
FlexAlign
.
Center
})
{
Button
()
{
Button
()
{
Text
(
'
test
ImportExport
'
)
Text
(
'
test
ExportRsa
'
)
.
fontSize
(
30
)
.
fontSize
(
30
)
.
fontWeight
(
FontWeight
.
Bold
)
.
fontWeight
(
FontWeight
.
Bold
)
}.
type
(
ButtonType
.
Capsule
)
}.
type
(
ButtonType
.
Capsule
)
...
@@ -291,8 +622,60 @@ struct Index {
...
@@ -291,8 +622,60 @@ struct Index {
top
:
20
top
:
20
})
})
.
backgroundColor
(
'
#0D9FFB
'
)
.
backgroundColor
(
'
#0D9FFB
'
)
.
onClick
(()
=>
{
.
onClick
(()
=>
{
testImportExport
();
testExportRsa
();
})
Button
()
{
Text
(
'
testImportDh
'
)
.
fontSize
(
30
)
.
fontWeight
(
FontWeight
.
Bold
)
}.
type
(
ButtonType
.
Capsule
)
.
margin
({
top
:
20
})
.
backgroundColor
(
'
#0D9FFB
'
)
.
onClick
(()
=>
{
ImportDhTest
(
huks
.
HuksKeyAlg
.
HUKS_ALG_DH
,
huks
.
HuksImportKeyType
.
HUKS_KEY_TYPE_PRIVATE_KEY
);
})
Button
()
{
Text
(
'
testImportRsa
'
)
.
fontSize
(
30
)
.
fontWeight
(
FontWeight
.
Bold
)
}.
type
(
ButtonType
.
Capsule
)
.
margin
({
top
:
20
})
.
backgroundColor
(
'
#0D9FFB
'
)
.
onClick
(()
=>
{
ImportRsaTest
(
huks
.
HuksKeyAlg
.
HUKS_ALG_RSA
,
huks
.
HuksImportKeyType
.
HUKS_KEY_TYPE_KEY_PAIR
);
})
Button
()
{
Text
(
'
testImportX25519
'
)
.
fontSize
(
30
)
.
fontWeight
(
FontWeight
.
Bold
)
}.
type
(
ButtonType
.
Capsule
)
.
margin
({
top
:
20
})
.
backgroundColor
(
'
#0D9FFB
'
)
.
onClick
(()
=>
{
ImportX25519Test
(
huks
.
HuksKeyAlg
.
HUKS_ALG_X25519
,
huks
.
HuksImportKeyType
.
HUKS_KEY_TYPE_PRIVATE_KEY
);
})
Button
()
{
Text
(
'
testImportEcc
'
)
.
fontSize
(
30
)
.
fontWeight
(
FontWeight
.
Bold
)
}.
type
(
ButtonType
.
Capsule
)
.
margin
({
top
:
20
})
.
backgroundColor
(
'
#0D9FFB
'
)
.
onClick
(()
=>
{
ImportEccTest
(
huks
.
HuksKeyAlg
.
HUKS_ALG_ECC
,
huks
.
HuksImportKeyType
.
HUKS_KEY_TYPE_PUBLIC_KEY
);
})
})
}
}
.
width
(
'
100%
'
)
.
width
(
'
100%
'
)
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录