Skip to content

Commit 078905c

Browse files
authoredNov 15, 2023
TRITON-2378 Update sshpk for ed25519 support (#132)
Reviewed by: Dan McDonald <dan.mcdonald@mnx.io>
1 parent 391fbe4 commit 078905c

File tree

5 files changed

+31
-24
lines changed

5 files changed

+31
-24
lines changed
 

‎.gitmodules

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[submodule "deps/javascriptlint"]
22
path = deps/javascriptlint
3-
url = git@github.com:joyent/javascriptlint
3+
url = https://github.com/TritonDataCenter/javascriptlint
44
[submodule "deps/jsstyle"]
55
path = deps/jsstyle
6-
url = git@github.com:joyent/jsstyle
6+
url = https://github.com/TritonDataCenter/jsstyle

‎CHANGES.md

+4
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@
44

55
(nothing yet)
66

7+
## 1.4.0
8+
9+
* Update sshpk for ed25519 support
10+
711
## 1.3.6
812

913
* Update jsprim due to vulnerability in json-schema (#123)

‎lib/utils.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,8 @@ var HASH_ALGOS = {
1313
var PK_ALGOS = {
1414
'rsa': true,
1515
'dsa': true,
16-
'ecdsa': true
16+
'ecdsa': true,
17+
'ed25519': true
1718
};
1819

1920
var HEADER = {

‎package-lock.json

+17-15
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎package.json

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,20 @@
11
{
22
"name": "http-signature",
33
"description": "Reference implementation of Joyent's HTTP Signature scheme.",
4-
"version": "1.3.6",
4+
"version": "1.4.0",
55
"license": "MIT",
6-
"author": "Joyent, Inc",
6+
"author": "MNX Cloud (mnx.io)",
77
"contributors": [
88
"Mark Cavage <mcavage@gmail.com>",
99
"David I. Lehn <dil@lehn.org>",
1010
"Patrick Mooney <patrick.f.mooney@gmail.com>"
1111
],
1212
"repository": {
1313
"type": "git",
14-
"url": "git://github.com/joyent/node-http-signature.git"
14+
"url": "git://github.com/TritonDataCenter/node-http-signature.git"
1515
},
16-
"homepage": "https://github.com/joyent/node-http-signature/",
17-
"bugs": "https://github.com/joyent/node-http-signature/issues",
16+
"homepage": "https://github.com/TritonDataCenter/node-http-signature/",
17+
"bugs": "https://github.com/TritonDataCenter/node-http-signature/issues",
1818
"keywords": [
1919
"https",
2020
"request"
@@ -32,7 +32,7 @@
3232
"dependencies": {
3333
"assert-plus": "^1.0.0",
3434
"jsprim": "^2.0.2",
35-
"sshpk": "^1.14.1"
35+
"sshpk": "^1.18.0"
3636
},
3737
"devDependencies": {
3838
"tap": "0.4.2",

0 commit comments

Comments
 (0)
Please sign in to comment.