HMAC(ArkTS)
HMAC是密钥相关的哈希运算消息认证码(Hash-based Message Authentication Code),是一种基于Hash函数和密钥进行消息认证的方法。
开发步骤
生成密钥
- 指定密钥别名。
- 初始化密钥属性集。
- 调用[generateKeyItem]生成密钥,HMAC支持的规格请参考[密钥生成]。
- 开发前请熟悉鸿蒙开发指导文档 :[
gitee.com/li-shizhen-skin/harmony-os/blob/master/README.md
]
除此之外,开发者也可以参考[密钥导入]的规格介绍,导入已有的密钥。
执行HMAC
- 获取密钥别名。
- 获取待运算的数据。
- 调用[initSession]初始化密钥会话,并获取会话的句柄handle。
- 调用[finishSession]结束密钥会话,获取哈希后的数据。
/*
* 以下以HMAC密钥的Promise操作使用为例
*/
import { huks } from '@kit.UniversalKeystoreKit';
let HmackeyAlias = 'test_HMAC';
let handle: number;
let plainText = '123456';
let hashData: Uint8Array;
function StringToUint8Array(str: String) {
let arr: number[] = new Array();
for (let i = 0, j = str.length; i < j; ++i) {
arr.push(str.charCodeAt(i));
}
return new Uint8Array(arr);
}
function Uint8ArrayToString(fileData: Uint8Array) {
let dataString = '';
for (let i = 0; i < fileData.length; i++) {
dataString += String.fromCharCode(fileData[i]);
}
return dataString;
}
function GetHMACProperties() {
const properties: Array< huks.HuksParam > = [{
tag: huks.HuksTag.HUKS_TAG_ALGORITHM,
value: huks.HuksKeyAlg.HUKS_ALG_HMAC
}, {
tag: huks.HuksTag.HUKS_TAG_KEY_SIZE,
value: huks.HuksKeySize.HUKS_AES_KEY_SIZE_256
}, {
tag: huks.HuksTag.HUKS_TAG_PURPOSE,
value: huks.HuksKeyPurpose.HUKS_KEY_PURPOSE_MAC
}, {
tag: huks.HuksTag.HUKS_TAG_DIGEST,
value: huks.HuksKeyDigest.HUKS_DIGEST_SHA384,
}];
return properties;
}
async function GenerateHMACKey() {
/*
* vwin
生成密钥场景
* 1. 确定密钥别名
*/
/*
* 2. 获取生成密钥算法参数配置
*/
let genProperties = GetHMACProperties();
let options: huks.HuksOptions = {
properties: genProperties
}
/*
* 3. 调用generateKeyItem
*/
await huks.generateKeyItem(HmackeyAlias, options)
.then((data) = > {
console.info(`promise: generate HMAC Key success`);
}).catch((error: Error) = > {
console.error(`promise: generate HMAC Key failed, ${JSON.stringify(error)}`);
})
}
async function HMACData() {
/*
* 模拟HMAC场景
* 1. 获取密钥别名
*/
/*
* 2. 获取待哈希的数据
*/
/*
* 3. 获取HMAC算法参数配置
*/
let hmacProperties = GetHMACProperties();
let options: huks.HuksOptions = {
properties: hmacProperties,
inData: StringToUint8Array(plainText)
}
/*
* 4. 调用initSession获取handle
*/
await huks.initSession(HmackeyAlias, options)
.then((data) = > {
handle = data.handle;
}).catch((error: Error) = > {
console.error(`promise: init EncryptData failed, ${JSON.stringify(error)}`);
})
/*
* 5. 调用finishSession获取HMAC的结果
*/
await huks.finishSession(handle, options)
.then((data) = > {
console.info(`promise: HMAC data success, data is ` + Uint8ArrayToString(data.outData as Uint8Array));
hashData = data.outData as Uint8Array;
}).catch((error: Error) = > {
console.error(`promise: HMAC data failed, ${JSON.stringify(error)}`);
})
}
审核编辑 黄宇
声明:本文内容及配图由入驻作者撰写或者入驻合作网站授权转载。文章观点仅代表作者本人,不代表德赢Vwin官网
网立场。文章及其配图仅供工程师学习之用,如有内容侵权或者其他违规问题,请联系本站处理。
举报投诉
-
密钥
+关注
关注
1文章
138浏览量
19753 -
鸿蒙
+关注
关注
57文章
2339浏览量
42804
发布评论请先 登录
相关推荐
鸿蒙开发:Universal Keystore Kit密钥管理服务 密钥导入介绍及算法规格
如果业务在HUKS外部生成密钥(比如应用间协商生成、服务器端生成),业务可以将密钥导入到HUKS中由HUKS进行管理。密钥一旦导入到HUKS
鸿蒙开发:Universal Keystore Kit 密钥管理服务 密钥协商 C、C++
以协商密钥类型为ECDH,并密钥仅在HUKS内使用为例,完成密钥协商。具体的场景介绍及支持的算法规格,请参考[密钥生成支持的算法]。
鸿蒙开发:Universal Keystore Kit 密钥管理服务 HMAC C、C++
HMAC是密钥相关的哈希运算消息认证码(Hash-based Message Authentication Code),是一种基于Hash函数和密钥进行消息认证的方法。
鸿蒙开发:Universal Keystore Kit 密钥管理服务 获取密钥属性ArkTS
HUKS提供了接口供业务获取指定密钥的相关属性。在获取指定密钥属性前,需要确保已在HUKS中生成或导入持久化存储的密钥。
鸿蒙开发:Universal Keystore Kit 密钥管理服务 获取密钥属性C C++
HUKS提供了接口供业务获取指定密钥的相关属性。在获取指定密钥属性前,需要确保已在HUKS中生成或导入持久化存储的密钥。
评论