The official installation guide (https://wiki.archlinux.org/index.php/Installation_Guide) contains a more verbose description.
- Image from https://www.archlinux.org/
The official installation guide (https://wiki.archlinux.org/index.php/Installation_Guide) contains a more verbose description.
| var crypto = require('crypto'); | |
| function sha1( data ) { | |
| var generator = crypto.createHash('sha1'); | |
| generator.update( data ) | |
| return generator.digest('hex') | |
| } | |
| console.log( sha1('adrian') ) |