How the hell did this get back
This commit is contained in:
@@ -92,7 +92,7 @@ class Encrypter {
|
|||||||
return decipher.update(encrypted, 'hex', 'utf8') + decipher.final('utf8');
|
return decipher.update(encrypted, 'hex', 'utf8') + decipher.final('utf8');
|
||||||
}
|
}
|
||||||
static hash(clearText) {
|
static hash(clearText) {
|
||||||
return crypto.createHash('sha256', this.key).update(clearText).digest('base64');
|
return crypto.createHmac('sha256', this.key).update(clearText).digest('base64');
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
Encrypter.algorithm = 'aes-256-cbc';
|
Encrypter.algorithm = 'aes-256-cbc';
|
||||||
|
|||||||
@@ -38,6 +38,6 @@ export class Encrypter {
|
|||||||
}
|
}
|
||||||
|
|
||||||
static hash(clearText: string): string {
|
static hash(clearText: string): string {
|
||||||
return crypto.createHash('sha256', this.key).update(clearText).digest('base64');
|
return crypto.createHmac('sha256', this.key).update(clearText).digest('base64');
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
Reference in New Issue
Block a user