🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more
Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ssh-fingerprint

Generate a fingerprint given an SSH public key (without `ssh-keygen` or external dependencies)

0.0.1
latest
Version published
Maintainers
1
Created

ssh-fingerprint

Generate a fingerprint given an SSH public key (without ssh-keygen or external dependencies)

Install

npm install ssh-fingerprint

Example

var fs = require('fs');

var fingerprint = require('ssh-fingerprint');

var publickey = fs.readFileSync('id_rsa.pub', 'utf-8');

console.log('fingerprint => %s', fingerprint(publickey));

yields

fingerprint => 64:c4:c5:c9:7e:91:91:db:e3:35:ca:de:be:84:2e:b0

Usage

fingerprint(pubkey, algorithm = 'md5');

Parameters

  • pubkey: A public key string, typically read from id_rsa.pub
  • algorithm: Hashing algorithm to use, defaults to md5 (OpenSSH Standard)

Returns

  • The stringified fingerprint, same as ssh-keygen -fl id_rsa.pub

License

MIT

FAQs

Package last updated on 04 Oct 2014

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts