无法在 Crypto 中重现 SubtleCrypto
Trouble reproducing SubtleCrypto in Crypto
我有一些代码利用 SubtleCrypto 加密密钥并将其存储在数据库中。
对于另一个功能,我必须能够在节点 12 中对其进行加密。如果没有 SubtleCrypto,我必须在 Crypto 中重新创建功能。
我得到相同大小的输出,但它似乎无法被 SubtleCrypto 解密,我正试图找出我哪里出错了。
这是代码 运行 浏览器上的 SubtleCrypto:
key = getKeyMaterial(password)];
salt = base64ToArraybuffer(optionalSalt)
aesKey = crypto.subtle.deriveKey(
{
name: constants.algorithms.pbkdf2,
salt: salt,
iterations: pbkdf2Iterations,
hash: { name: constants.hash.sha256 },
},
key,
{
name: constants.algorithms.aesGcm,
length: aesWrapKeyBitsLength,
},
true,
['wrapKey', 'unwrapKey']
),
return {
salt: arraybufferTobase64(salt),
aesKey: aesKey,
}
function getKeyMaterial(password) {
var enc = new TextEncoder();
crypto.subtle.importKey(
constants.format.raw,
enc.encode(password),
{
name: constants.algorithms.pbkdf2,
},
false,
['deriveKey']
)
没有 SubtleCrypto,在 Node 12 中,我不得不使用 Crypto 库..
这是我的代码的当前迭代。
const ivByteLength = 12;
function wrapKey(privateKey, aesKey) {
const IV = crypto.randomBytes(ivByteLength);
const ALGORITHM = 'aes-256-gcm';
const cipher = crypto.createCipheriv(ALGORITHM, aesKey, IV);
let encrypted = cipher.update(privateKey, undefined, 'binary');
encrypted += cipher.final('binary');
const authTag = cipher.getAuthTag();
encrypted += authTag;
const output = {
wrappedKey: arraybufferTobase64(Buffer.from(encrypted, 'ascii')),
iv: arraybufferTobase64(IV),
};
return output;
}
async function deriveAesGcmKey(password, salt) {
return new Promise((resolve, reject) => {
crypto.pbkdf2(password, salt, 100000, 32, 'sha256', (err, derivedKey) => {
if (err) reject(err);
else resolve(derivedKey);
});
});
}
function arraybufferTobase64(buffer) {
let binary = '';
const bytes = new Uint8Array(buffer);
const len = bytes.byteLength;
for (let i = 0; i < len; i += 1) {
binary += String.fromCharCode(bytes[i]);
}
return btoa(binary);
}
function base64ToArraybuffer(base64) {
const binary = atob(base64);
const len = binary.length;
const bytes = new Uint8Array(len);
for (let i = 0; i < len; i += 1) {
bytes[i] = binary.charCodeAt(i);
}
return bytes;
}
封装的密钥在两种实现中具有相同的大小,但由 Node 生成的密钥无法在浏览器中展开。
我假设某些默认值是错误的还是什么?
NodeJS 在 crypto
包中有一个叫做 webcrypto
Class 的东西,它有微妙的加密实现。
示例来自 Docs:
const { subtle } = require('crypto').webcrypto;
async function digest(data, algorithm = 'SHA-512') {
const ec = new TextEncoder();
const digest = await subtle.digest(algorithm, ec.encode(data));
return digest;
}
另请查看:https://nodejs.org/api/webcrypto.html#webcrypto_class_subtlecrypto
编辑:
正如在低版本 Node 的评论中所说,您可以使用类似 https://www.npmjs.com/package/@peculiar/webcrypto 的 polyfill,它是 Nodejs 版本高于 Node10
的 webcrypto 实现
我有一些代码利用 SubtleCrypto 加密密钥并将其存储在数据库中。
对于另一个功能,我必须能够在节点 12 中对其进行加密。如果没有 SubtleCrypto,我必须在 Crypto 中重新创建功能。
我得到相同大小的输出,但它似乎无法被 SubtleCrypto 解密,我正试图找出我哪里出错了。
这是代码 运行 浏览器上的 SubtleCrypto:
key = getKeyMaterial(password)];
salt = base64ToArraybuffer(optionalSalt)
aesKey = crypto.subtle.deriveKey(
{
name: constants.algorithms.pbkdf2,
salt: salt,
iterations: pbkdf2Iterations,
hash: { name: constants.hash.sha256 },
},
key,
{
name: constants.algorithms.aesGcm,
length: aesWrapKeyBitsLength,
},
true,
['wrapKey', 'unwrapKey']
),
return {
salt: arraybufferTobase64(salt),
aesKey: aesKey,
}
function getKeyMaterial(password) {
var enc = new TextEncoder();
crypto.subtle.importKey(
constants.format.raw,
enc.encode(password),
{
name: constants.algorithms.pbkdf2,
},
false,
['deriveKey']
)
没有 SubtleCrypto,在 Node 12 中,我不得不使用 Crypto 库.. 这是我的代码的当前迭代。
const ivByteLength = 12;
function wrapKey(privateKey, aesKey) {
const IV = crypto.randomBytes(ivByteLength);
const ALGORITHM = 'aes-256-gcm';
const cipher = crypto.createCipheriv(ALGORITHM, aesKey, IV);
let encrypted = cipher.update(privateKey, undefined, 'binary');
encrypted += cipher.final('binary');
const authTag = cipher.getAuthTag();
encrypted += authTag;
const output = {
wrappedKey: arraybufferTobase64(Buffer.from(encrypted, 'ascii')),
iv: arraybufferTobase64(IV),
};
return output;
}
async function deriveAesGcmKey(password, salt) {
return new Promise((resolve, reject) => {
crypto.pbkdf2(password, salt, 100000, 32, 'sha256', (err, derivedKey) => {
if (err) reject(err);
else resolve(derivedKey);
});
});
}
function arraybufferTobase64(buffer) {
let binary = '';
const bytes = new Uint8Array(buffer);
const len = bytes.byteLength;
for (let i = 0; i < len; i += 1) {
binary += String.fromCharCode(bytes[i]);
}
return btoa(binary);
}
function base64ToArraybuffer(base64) {
const binary = atob(base64);
const len = binary.length;
const bytes = new Uint8Array(len);
for (let i = 0; i < len; i += 1) {
bytes[i] = binary.charCodeAt(i);
}
return bytes;
}
封装的密钥在两种实现中具有相同的大小,但由 Node 生成的密钥无法在浏览器中展开。
我假设某些默认值是错误的还是什么?
NodeJS 在 crypto
包中有一个叫做 webcrypto
Class 的东西,它有微妙的加密实现。
示例来自 Docs:
const { subtle } = require('crypto').webcrypto;
async function digest(data, algorithm = 'SHA-512') {
const ec = new TextEncoder();
const digest = await subtle.digest(algorithm, ec.encode(data));
return digest;
}
另请查看:https://nodejs.org/api/webcrypto.html#webcrypto_class_subtlecrypto
编辑:
正如在低版本 Node 的评论中所说,您可以使用类似 https://www.npmjs.com/package/@peculiar/webcrypto 的 polyfill,它是 Nodejs 版本高于 Node10
的 webcrypto 实现