第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問題,去搜搜看,總會(huì)有你想問的

nodejs 方法 crypto.createCipheriv

nodejs 方法 crypto.createCipheriv

qq_花開花謝_0 2022-12-09 16:30:39
const crypto = require('crypto');const util = require('util');class AES {    constructor(key, iv) {        if (!key) throw new Error('A 32 byte / 256 bit key is required.');        if (!iv) throw new Error('Initialization vector is required.');        this.key = key;        this.iv = iv;    }    encrypt(data) {        let cipher = crypto.createCipheriv('aes-256-cbc', this.key, this.iv);        let encrypted = cipher.update(data, 'utf-8', 'hex');        encrypted += cipher.final('hex');        return encrypted;    }    decrypt(data) {        let decipher = crypto.createDecipheriv('aes-256-cbc', this.key, this.iv);        let decrypted = decipher.update(data, 'hex', 'utf-8');        decrypted += decipher.final('utf-8');        return decrypted;    }    static randomBytes = async bytes => {        let result;        result = await util.promisify(crypto.randomBytes)(bytes);        return result;    }    sha256(data) {        return crypto.createHash('sha256').update(data).digest('hex');    }}以上是我的代碼,我想知道加密和解密方法是否應(yīng)該異步?使用我的測試數(shù)據(jù)執(zhí)行時(shí)間不到 1 毫秒,但是如果有成千上萬的并發(fā)用戶,使用異步構(gòu)建這些方法會(huì)更好嗎?我無法在早期的測試中承諾它們,所以我想也許模塊不能異步?
查看完整描述

1 回答

?
絕地?zé)o雙

TA貢獻(xiàn)1946條經(jīng)驗(yàn) 獲得超4個(gè)贊

使函數(shù)異步不會(huì)提高多個(gè)用戶的性能,特別是如果這是一個(gè) REST 服務(wù)。你應(yīng)該看看通過線程使用你的硬件。



查看完整回答
反對(duì) 回復(fù) 2022-12-09
  • 1 回答
  • 0 關(guān)注
  • 269 瀏覽
慕課專欄
更多

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)