Last change
on this file since 6c1585f was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago |
initial commit
|
-
Property mode
set to
100644
|
File size:
281 bytes
|
Rev | Line | |
---|
[6a3a178] | 1 | import crypto from 'crypto';
|
---|
| 2 |
|
---|
| 3 | function md5(bytes) {
|
---|
| 4 | if (Array.isArray(bytes)) {
|
---|
| 5 | bytes = Buffer.from(bytes);
|
---|
| 6 | } else if (typeof bytes === 'string') {
|
---|
| 7 | bytes = Buffer.from(bytes, 'utf8');
|
---|
| 8 | }
|
---|
| 9 |
|
---|
| 10 | return crypto.createHash('md5').update(bytes).digest();
|
---|
| 11 | }
|
---|
| 12 |
|
---|
| 13 | export default md5; |
---|
Note:
See
TracBrowser
for help on using the repository browser.