gpt4 book ai didi

javascript - 错误类型错误 : Cannot read property 'salt' of null

转载 作者:行者123 更新时间:2023-12-05 00:44:02 25 4
gpt4 key购买 nike

我在尝试加密和解密本地和 session 存储的值时遇到了麻烦。

感谢您的宝贵时间和帮助。

enter image description here

import { Injectable } from "@angular/core";
import { environment } from "../../../environments/environment";
import * as CryptoJS from 'crypto-js';



@Injectable({
providedIn: "root"
})
export class StorageService {
constructor() {}

// If the logged in user details are stored in local storage the user will stay logged in if they refresh
// the browser and also between browser sessions until they logout

// Para cambiar el tipo de storage a utilizar modificar el valor en el archivo de enviorment correspondiente
// los valores posibles son LOCALSTORAGE o SESSIONSTORAGE

encryptation(value: string, llave: string) {
return CryptoJS.AES.encrypt(value, llave);
}

decrypt(value: string, llave: string) {
return CryptoJS.AES.decrypt(value, llave);
}

llave: string = "prueba";

setItem(key: string, value: string): void {
value = this.encryptation(value, this.llave);
if (environment.storage === "SESSIONSTORAGE") {
console.log(key,value);
sessionStorage.setItem(key, value);
} else {
console.log(key,value);
localStorage.setItem(key, value);
}
}

getItem(key: string): string {
let value;
let value1 = sessionStorage.getItem(key);
let value2 = localStorage.getItem(key);
if (environment.storage === "SESSIONSTORAGE") {
value = this.decrypt(value1, this.llave);
console.log(value);
return value;
} else {
value = this.decrypt(value2, this.llave);
console.log(value);
return value;
}
}

key(index: number): string {
if (environment.storage === "SESSIONSTORAGE") {
return sessionStorage.key(index);
} else {
return localStorage.key(index);
}
}

removeItem(key: string): void {
if (environment.storage === "SESSIONSTORAGE") {
sessionStorage.removeItem(key);
} else {
localStorage.removeItem(key);
}
}
}

我需要加密本地和 session 存储的值,并在必要时解密。

不知道哪里出了问题。

实现加密最简单的方法是哪一种?

最佳答案

这个错误信息量不大,但基本上,当使用 crypto-js 解密一个值时,它有一个步骤,它将字符串输入转换为一个“加密对象”,其中包含例如盐。如果您将非字符串传递给解密函数,crypto-js 假定它已经是这样的对象。因此,如果你传递了 null,它稍后会尝试访问 (null).salt 并出错。

这基本上意味着您的 getItem 正在尝试读取不在存储中的值。添加适当的空检查。例如。如果您尝试访问 null 的值,请立即返回该值而不尝试对其进行解密。

关于javascript - 错误类型错误 : Cannot read property 'salt' of null,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/68459006/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com