You're Invited:Meet the Socket Team at BlackHat and DEF CON in Las Vegas, Aug 7-8.RSVP
Socket
Socket
Sign inDemoInstall

sshpk

Package Overview
Dependencies
Maintainers
1
Versions
50
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 1.6.0 to 1.6.1

4

lib/algs.js

@@ -18,2 +18,3 @@ // Copyright 2015 Joyent, Inc.

parts: ['R'],
normalize: false,
sizePart: 'R'

@@ -35,3 +36,4 @@ }

'ed25519': {
parts: ['R', 'r']
parts: ['R', 'r'],
normalize: false
}

@@ -38,0 +40,0 @@ };

@@ -100,3 +100,5 @@ // Copyright 2015 Joyent, Inc.

for (var i = 0; i < algInfo.parts.length; ++i) {
if (parts[i].name !== 'curve') {
parts[i].name = algInfo.parts[i];
if (parts[i].name !== 'curve' &&
algInfo.normalize !== false) {
var p = parts[i];

@@ -109,3 +111,2 @@ var nd = utils.mpNormalize(p.data);

}
parts[i].name = algInfo.parts[i];
}

@@ -112,0 +113,0 @@

{
"name": "sshpk",
"version": "1.6.0",
"version": "1.6.1",
"description": "A library for finding and using SSH public keys",

@@ -5,0 +5,0 @@ "main": "lib/index.js",

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc