|
|
15精币
加密部分
const msgUint8 = new TextEncoder().encode(message)
const hashBuffer = await crypto.subtle.digest('SHA-256', msgUint8)
const hashArray = Array.from(new Uint8Array(hashBuffer))
return hashArray.map(b => b.toString(16).padStart(2, '0')).join('')
原文 1693135174401:1:
正确密文:2932b7bef88db14bcbc518bcceabaa915be3cb904d7d0ee5e2873f2510593abb
经过易语言的密文 :3e90512cae23fccc187c5c3684da32c6aa844865e92ca93ffbf36d5b04906946
大佬们有什么办法
|
回答提醒:如果本帖被关闭无法回复,您有更好的答案帮助楼主解决,请发表至 源码区 可获得加分喔。 友情提醒:本版被采纳的主题可在 申请荣誉值 页面申请荣誉值,获得 1点 荣誉值,荣誉值可兑换荣誉会员、终身vip用户组。 快捷通道:申请荣誉值 →
|