14 lines
207 B
JavaScript
Executable file
14 lines
207 B
JavaScript
Executable file
'use strict'
|
|
|
|
const crypto = require('crypto')
|
|
|
|
const CryptoUtils = {
|
|
sha1 (data) {
|
|
return crypto
|
|
.createHash('sha1')
|
|
.update(data)
|
|
.digest('hex')
|
|
}
|
|
}
|
|
|
|
module.exports = CryptoUtils
|