将加密数据转换为字符串并返回

Turning encrypted data into a string and back

我想以字符串格式存储加密数据。不幸的是,我无法做到这一点,而且我不明白为什么。

出于某种原因,这一行:

const str = new TextEncoder().encode(buff1); 

创建一个比之前 Arraybuffer 中的字节更多和不同字节的字符串。

此代码的最终结果是将这些记录到控制台:
ArrayBuffer { byteLength: 139 }
ArrayBuffer { byteLength: 262 }

这是个问题,因为它们本应相似,但实际上却不相似。我尝试了很多替代方案,但所有可能的方法都以同样的问题告终。如果有人能告诉我如何解决这个问题,我将不胜感激。

请注意,EncryptText 函数正常工作。我只为那些想要 运行 代码到他们的 IDE.

的人添加它
async function encryptText(plainText, iv, password): Promise<ArrayBuffer> {
    const ptUtf8 = new TextEncoder().encode(plainText);
    const pwUtf8 = new TextEncoder().encode(password);
    const pwHash = await crypto.subtle.digest('SHA-256', pwUtf8);
    const alg = { name: 'AES-GCM', iv: iv };
    const key = await crypto.subtle.importKey('raw', pwHash, alg, false, ['encrypt']);
    return crypto.subtle.encrypt(alg, key, ptUtf8);
};

async function encrBuffToUtf8Test() {
    const plainData = 'Lorem ipsum dolor sit amet, consectetur adipiscing elit, ' +
        'sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.';
    const password = 'infamous';
    const randomValues = crypto.getRandomValues(new Uint8Array(12));

    const encryptionResult1 = await this.encryptText(plainData, randomValues, password);

    const buff1 = Buffer.from(encryptionResult1);
    const str = new TextEncoder().encode(buff1);
    const utf8buff = new TextDecoder('utf-8').decode(buff);
    const encryptionResult2 = utf8buff.buffer;
    const resTest = encryptionResult1 === encryptionResult2;
    if (!resTest) {
        console.log(encryptionResult1);
        console.log(encryptionResult2);
    }
}

我想我几乎每天都写这个作为答案,但是再一次,you can't convert arbitrary binary data to a string 使用标准字符编码。那样根本行不通。

考虑改用 base64 或 hex。