You you can install via yarn add locutus and
require this function via const sha1 = require('locutus/php/strings/sha1').
It is important to use a bundler that supports tree-shaking
so that you only ship the functions that you actually use to your browser,
instead of all of Locutus, which is massive. Examples are:
Parcel,
webpack, or
rollup.js.
For server-side use this is typically less of a concern.
Examples
Please note that these examples are distilled from test cases that automatically verify
our functions still work correctly. This could explain some quirky ones.
#
code
expected result
1
sha1('Kevin van Zonneveld')
'54916d2e62f65b3afa6e192e6a601cdbe5cb5897'
Notes
Keep in mind that in accordance with PHP, the whole string is buffered and then
hashed. If available, we’d recommend using Node’s native crypto modules directly
in a steaming fashion for faster and more efficient hashing
Here’s what our current JavaScript equivalent to PHP's sha1 looks like.
module.exports = functionsha1(str) { // discuss at: https://locutus.io/php/sha1/ // original by: Webtoolkit.info (https://www.webtoolkit.info/) // improved by: Michael White (https://getsprink.com) // improved by: Kevin van Zonneveld (https://kvz.io) // input by: Brett Zamir (https://brett-zamir.me) // note 1: Keep in mind that in accordance with PHP, the whole string is buffered and then // note 1: hashed. If available, we'd recommend using Node's native crypto modules directly // note 1: in a steaming fashion for faster and more efficient hashing // example 1: sha1('Kevin van Zonneveld') // returns 1: '54916d2e62f65b3afa6e192e6a601cdbe5cb5897'
const _cvtHex = function (val) { let str = '' let i let v
for (i = 7; i >= 0; i--) { v = (val >>> (i * 4)) & 0x0f str += v.toString(16) } return str }
let blockstart let i, j const W = newArray(80) letH0 = 0x67452301 letH1 = 0xefcdab89 letH2 = 0x98badcfe letH3 = 0x10325476 letH4 = 0xc3d2e1f0 let A, B, C, D, E let temp
for (blockstart = 0; blockstart < wordArray.length; blockstart += 16) { for (i = 0; i < 16; i++) { W[i] = wordArray[blockstart + i] } for (i = 16; i <= 79; i++) { W[i] = _rotLeft(W[i - 3] ^ W[i - 8] ^ W[i - 14] ^ W[i - 16], 1) }
A = H0 B = H1 C = H2 D = H3 E = H4
for (i = 0; i <= 19; i++) { temp = (_rotLeft(A, 5) + ((B & C) | (~B & D)) + E + W[i] + 0x5a827999) & 0x0ffffffff E = D D = C C = _rotLeft(B, 30) B = A A = temp }
for (i = 20; i <= 39; i++) { temp = (_rotLeft(A, 5) + (B ^ C ^ D) + E + W[i] + 0x6ed9eba1) & 0x0ffffffff E = D D = C C = _rotLeft(B, 30) B = A A = temp }
for (i = 40; i <= 59; i++) { temp = (_rotLeft(A, 5) + ((B & C) | (B & D) | (C & D)) + E + W[i] + 0x8f1bbcdc) & 0x0ffffffff E = D D = C C = _rotLeft(B, 30) B = A A = temp }
for (i = 60; i <= 79; i++) { temp = (_rotLeft(A, 5) + (B ^ C ^ D) + E + W[i] + 0xca62c1d6) & 0x0ffffffff E = D D = C C = _rotLeft(B, 30) B = A A = temp }
Not unlike Wikipedia, Locutus is an ongoing community effort. Our philosophy follows
The McDonald’s Theory.
This means that we assimilate first iterations with imperfections,
hoping for others to take issue with-and improve them.
This unorthodox approach has worked very well to foster fun and fruitful collaboration,
but please be reminded to use our creations at your own risk.
THE SOFTWARE IS PROVIDED "AS IS" has never been more true than for Locutus.