- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我刚刚移至 Node 12.13,并且 crypto.createDecipher
和 crypto.createCipher
遇到一些问题
首先,当我使用这两个函数时,我收到了弃用警告。
const encodeString = (value, password) =>
new Promise((resolve, reject) => {
const cipher = crypto.createCipher("aes192", password);
let encrypted = "";
cipher.on("readable", () => {
const data = cipher.read();
if (data) encrypted += data.toString("hex");
});
cipher.on("end", () => resolve(encrypted));
cipher.write(value);
cipher.end();
});
const decodeString = (encrypted, password) =>
new Promise((resolve, reject) => {
const decipher = crypto.createDecipher("aes192", password);
let decrypted = "";
decipher.on("readable", () => {
const data = decipher.read();
if (data) decrypted += data.toString("utf8");
});
decipher.on("end", () => resolve(decrypted));
decipher.write(encrypted, "hex");
decipher.end();
});
data()
.then(data => {
console.log("final", data);
})
.catch(err => {
console.log("final err", err);
});
我正在寻找一种迁移到 createCipheriv
和 createDecipheriv
的方法,但我找不到如何将密码转换为 key 和 iv
最佳答案
找到以下方法来生成 key 和 IV 以及实现方法
const keyBytes: Buffer = Buffer.from(password, 'base64');
// Generates 16 byte cryptographically strong pseudo-random data as IV
// https://nodejs.org/api/crypto.html#crypto_crypto_randombytes_size_callback
const ivBytes: Buffer = crypto.randomBytes(16);
const ivText: string = ivBytes.toString('base64');
加密
export function encryptString(plainText: string, secret: string): string {
if (!plainText || plainText.length === 0) {
return plainText;
}
if (!secret || secret.length === 0) {
throw new Error('you must pass a secret');
}
const keyBytes: Buffer = Buffer.from(secret, 'base64');
// Generates 16 byte cryptographically strong pseudo-random data as IV
// https://nodejs.org/api/crypto.html#crypto_crypto_randombytes_size_callback
const ivBytes: Buffer = crypto.randomBytes(16);
const ivText: string = ivBytes.toString('base64');
// encrypt using aes256 iv + key + plainText = encryptedText
const cipher: crypto.Cipher = crypto.createCipheriv('aes-256-cbc', keyBytes, ivBytes);
let encryptedValue: string = cipher.update(plainText, 'utf8', 'base64');
encryptedValue += cipher.final('base64');
// store base64(ivBytes)!base64(encryptedValue)
return `${ ivText }!${ encryptedValue }`;
}
解密
export function decryptString(encryptedValue: string, secret: string):string {
if (!encryptedValue || encryptedValue.length === 0) {
return encryptedValue;
}
if (!secret || secret.length === 0) {
throw new Error('you must pass a secret');
}
const parts: string[] = encryptedValue.split('!');
if (parts.length !== 2) {
throw new Error('The encrypted value is not a valid format');
}
const ivText: string = parts[0];
const encryptedText: string = parts[1];
const ivBytes: Buffer = Buffer.from(ivText, 'base64');
const keyBytes: Buffer = Buffer.from(secret, 'base64');
if (ivBytes.length !== 16) {
throw new Error('The encrypted value is not a valid format');
}
if (keyBytes.length !== 32) {
throw new Error('The secret is not valid format');
}
// decrypt using aes256 iv + key + encryptedText = decryptedText
const decipher: crypto.Decipher = crypto.createDecipheriv('aes-256-cbc', keyBytes, ivBytes);
let value: string = decipher.update(encryptedText, 'base64', 'utf8');
value += decipher.final('utf8');
return value;}
关于node.js - 迁移 createCipher 和 createCipheriv,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58751923/
我刚刚移至 Node 12.13,并且 crypto.createDecipher 和 crypto.createCipher 遇到一些问题 首先,当我使用这两个函数时,我收到了弃用警告。 const
我目前正在尝试使用 NodeJS 加密静态数据,我在 Node API 文档中读到 createCipher 不是 recommended . The implementation of crypto
我正在使用以下函数来加密/解密 Node.js 中的字符串: var crypto = require('crypto'); var algorithm = 'aes-256-ctr'; functi
我有一些遗留数据,在 Node 中加密,我需要在 Ruby 中解密。 问题是,数据是使用现已弃用的方法加密的,createCipher .此方法使用密码来执行加密。它已被 createCipheriv
我继承了一个数据库,其中一些字段由旧代码加密。 代码使用了(现已弃用)crypto.createCipher Node.js 提供的函数。该函数期望传递明文密码,而不是 key 和初始化向量。文档表明
我有一个接收应用程序,它需要来自 PHP 生成器的字符串,如下所示: 05c3febb9970204a ?> 更换接收器的成本很高。 我正在使用 node.js 构建另一个生成器,但我无法让我的 J
我是一名优秀的程序员,十分优秀!