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 71e914e commit 1e11aeaCopy full SHA for 1e11aea
src/cryptoUtils.js
@@ -47,5 +47,5 @@ export function md5Hash(string: string): string {
47
}
48
49
export function sha256Hash(string: string): string {
50
- return crypto.createHash('sha256').update(string).digest('hex');
+ return createHash('sha256').update(string).digest('hex');
51
0 commit comments