We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 39d01f1 commit f97ebb9Copy full SHA for f97ebb9
lib/lib/hashing.js
@@ -15,7 +15,7 @@ class Hashing {
15
static hash(algorithm, text) {
16
const hash = (0, crypto_1.createHash)(algorithm);
17
hash.update(text);
18
- return hash.digest('hex').toUpperCase();
+ return hash.digest('hex');
19
}
20
21
exports.Hashing = Hashing;
0 commit comments