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.
2 parents 71e914e + 1e11aea commit 8023e75Copy full SHA for 8023e75
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