文件名称:window.crypto库+QuickJs引擎封装及调用-易语言
文件大小:358KB
文件格式:ZIP
更新时间:2024-07-01 15:03:08
模块控件源码
经常看到有人要找AES-GCM-128 这个算法加解密 网上相关的文档也较少其中在telegram登录首页就在使用该算法 应该让不少哥们头疼 其实这个加密常见于浏览器内置接口window.crypto.subtle 该接口不仅支持该类型的加密 且支持非常多的算法加密如RSA DES 等等 这里就演示AES-GCM-128 这个类型 crypto-AES-GCM-128调用例子 function ___crypto__test(keyData, iv, data) { const format = "raw", // keyData = new Uint8Array([23, 113, 57, 6, 35, -69, -60, 98, 84, -17, -125, -49, 18, 6, -92, 32]), algorithm = "AES-GCM", extractable = true, usages = ["encrypt", "decrypt"]; // iv = new Uint8Array([47, 46, 123, 78, 36, 14, 109, 50, 121, 64, 11, 38]); window.crypto.subtle.importKey( format, keyData, algorithm, extractable, usages ).then(key =gt; { window.crypto.subtle.encrypt({ name: algorithm, iv: iv }, key, data ).then(result =gt; { console.log(Array.from(new Uint8Array((result)))) }) }) } console.log(___crypto__test( new Uint8Array([23, 113, 57, 6, 35, -69, -60, 98, 84, -17, -125, -49, 18, 6, -92, 32]), new Uint8Array([47, 46, 123, 78, 36, 14, 109, 50, 121, 64, 11, 38]), new Uint8Array([50, 49, 48]) )) crypto主要相关接口介绍 crypto.subtle.importKey const result = crypto.subtle.importKey( format, keyData, algorithm, extractable, usages ); format 是一个字符串,描述要导入的密钥的数据格式。可以是以下之一:----------raw:原始格式。----------pkcs8:PKCS#8格式。----------spki:SubjectPublicKeyInfo格式。----------jwk:JSON Web密钥格式。 - keyData 是ArrayBuffer,TypedArray,a DataView或JSONWebKey包含给定格式的键的对象。 - algorithm 是一个字典对象,用于定义要导入的密钥的类型并提供额外的算法特定参数。对于RSASSA-PKCS1-v1_5, RSA-PSS或 RSA-OAEP:传递RsaHashedImportParams对象。对于ECDSA或ECDH:传递 EcKeyImportParams对象。对于HMAC:传递一个HmacImportParams对象。对于AES-CTR,AES-CBC,AES-GCM或AES-KW:传递标识算法的字符串或形式为的对象{ "name": ALGORITHM },其中ALGORITHM 是算法的名称。对于PBKDF2 :传递字符串PBKDF2。 - extractable 是Boolean表明它是否将有可能使用到导出密钥SubtleCrypto.exportKey()或SubtleCrypto.wrapKey()。 - ke
【文件预览】:
QuickJs-crypto
----QuickJS()
--------QuickJSEC.e(132KB)
--------QuickJSEC.ec(117KB)
----cryptoJS()
--------crypto.js(690KB)
----QuickJS.dll(214KB)
----demo.e(17KB)