未验证 提交 c9b25352 编写于 作者: O openharmony_ci 提交者: Gitee

!8998 修改HUKS demo代码

Merge pull request !8998 from zhangcheng/master
...@@ -1070,9 +1070,10 @@ async function testSignVerify() { ...@@ -1070,9 +1070,10 @@ async function testSignVerify() {
}).catch((err) => { }).catch((err) => {
console.info('test update err information: ' + err); console.info('test update err information: ' + err);
}); });
rsaVerifyOptions.inData = finishRsaSignData; rsaSignOptionsSecond.inData = new Uint8Array(new Array());
await huks.finish(rsaSignHandle, rsaSignOptionsSecond).then((data) => { await huks.finish(rsaSignHandle, rsaSignOptionsSecond).then((data) => {
console.info(`test finish data: ${JSON.stringify(data)}`); console.info(`test finish data: ${JSON.stringify(data)}`);
finishRsaSignData = data.outData;
}).catch((err) => { }).catch((err) => {
console.info('test finish err information: ' + JSON.stringify(err)); console.info('test finish err information: ' + JSON.stringify(err));
}); });
...@@ -1797,9 +1798,9 @@ async function attestId() { ...@@ -1797,9 +1798,9 @@ async function attestId() {
}; };
generateKey(aliasString); generateKey(aliasString);
setTimeout(()=>huks.attestKey(aliasString, options, function (err, data) { huks.attestKey(aliasString, options, function (err, data) {
printLog(`key attest result : ${JSON.stringify(data)}`); printLog(`key attest result : ${JSON.stringify(data)}`);
}), 1000); });
} }
``` ```
...@@ -1920,9 +1921,9 @@ async function attestKey() { ...@@ -1920,9 +1921,9 @@ async function attestKey() {
properties: properties properties: properties
}; };
generateKey(aliasString); generateKey(aliasString);
setTimeout(()=>huks.attestKey(aliasString, options, function (err, data) { huks.attestKey(aliasString, options, function (err, data) {
printLog(`key attest result : ${JSON.stringify(data)}`); printLog(`key attest result : ${JSON.stringify(data)}`);
}), 1000); });
} }
``` ```
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册