forked from pouchdb/pouchdb
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
(pouchdb#5102) - specify md5 data encoding
The default encoding was switched to utf8 in nodejs/node#5522
- Loading branch information
Showing
2 changed files
with
4 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
import crypto from 'crypto'; | ||
|
||
function MD5(string) { | ||
return crypto.createHash('md5').update(string).digest('hex'); | ||
return crypto.createHash('md5').update(string, 'binary').digest('hex'); | ||
} | ||
|
||
export default MD5; | ||
export default MD5; |