vue/js通过计算 字符串 / 文件 sha1(SHA-1)值、sha256值等方法
vue/js 前端获取 字符串 / 文件 sha1(SHA-1)值、sha256值等方法
·
目录
1、对消息进行编码,然后计算其 SHA-256,并 记录内容长度:
1、对消息进行编码,然后计算其 SHA-256,并 记录内容长度:
代码示例:
const content = '这是用来计算SHA-256值的长度的方法';
async function digestMessage(message) {
const encoder = new TextEncoder();
const data = encoder.encode(message);
const hash = await crypto.subtle.digest('SHA-256', data);
return hash;
}
digestMessage(content )
.then(digestBuffer => console.log(digestBuffer.byteLength));
注意:如果想要计算SHA-1的值,直接将上述代码中 SHA-256替换为 SHA-1即可。其他同样操作
实际结果如下图:
2、转为十六进制字符串
代码示例:
const content2 = '这是用来计算SHA-256的字符串的方法';
async function digestMessage(message) {
const msgUint8 = new TextEncoder().encode(message); // encode as (utf-8) Uint8Array
const hashBuffer = await crypto.subtle.digest('SHA-256', msgUint8); // hash the message
const hashArray = Array.from(new Uint8Array(hashBuffer)); // convert buffer to byte array
const hashHex = hashArray.map(b => b.toString(16).padStart(2, '0')).join(''); // convert bytes to hex string
return hashHex;
}
digestMessage(content2)
.then(digestHex => console.log(digestHex));
注意:如果想要计算SHA-1的值,直接将上述代码中 SHA-256替换为 SHA-1即可。其他同样操作实际结果如下图:
3、vue / js 前端代码获取文件的SHA-1的值
/**
* 获取文件SHA-1的值
* @params file 上传的 file
*/
function getFileSha1 (file) {
return new Promise((resolve) => {
const fileReader = new FileReader();
fileReader.readAsArrayBuffer(file); // 获取文件的ArrarBuffer
fileReader.onload = e => {
// console.log(e.target.result)) // 查看返回结果
const SHA = getSha1(e.target.result);
resolve(SHA);
};
});
}
/**
* 获取文件SHA-1的值
* @params data 读取文件的数据,ArrarBuffer格式
*/
async function getSha1(data) {
// 读取文件时,直接将文件读取为Arryabuffer的形式。顾不需要进行 encode as (utf-8) Uint8Array
// 读取字符串时则需要
// const msgUint8 = new TextEncoder().encode(data);
const hashBuffer = await crypto.subtle.digest('SHA-1', data); // hash the message
const hashArray = Array.from(new Uint8Array(hashBuffer)); // convert buffer to byte array
const hashHex = hashArray.map(b => b.toString(16).padStart(2, '0')).join(''); // convert bytes to hex string
return hashHex;
}
// 由于文件读取处理为异步操作。顾调用时,可通过 async / await 来获取SHA-1的值
前端获取SHA-1等值主要通过 crypto.subtle.digest(algorithm, data) 方法获取
参数
algorithm:这可能是字符串或具有单个属性的对象,name即字符串。字符串命名要使用的散列函数。支持的值是:"SHA-1"(但不要在加密应用程序中使用它)
"SHA-256"
"SHA-384"
"SHA-512".
data : 一个ArrayBuffer或ArrayBufferView包含要消化的数据。返回值
A Promise满足 ArrayBuffer包含摘要的 a
更多推荐
已为社区贡献3条内容
所有评论(0)