-
Notifications
You must be signed in to change notification settings - Fork 118
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #888 from GrapeGreen/js_sign_ecdsa
ECDSA P-256 SHA-256 implementation
- Loading branch information
Showing
11 changed files
with
259 additions
and
112 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "wbn-sign", | ||
"version": "0.1.2", | ||
"version": "0.1.3", | ||
"description": "Signing tool to sign a web bundle with integrity block", | ||
"homepage": "https://github.com/WICG/webpackage/tree/main/js/sign", | ||
"main": "./lib/wbn-sign.cjs", | ||
|
@@ -33,7 +33,8 @@ | |
], | ||
"author": "Sonja Laurila <[email protected]> (https://github.com/sonkkeli)", | ||
"contributors": [ | ||
"Christian Flach <[email protected]> (https://github.com/cmfcmf)" | ||
"Christian Flach <[email protected]> (https://github.com/cmfcmf)", | ||
"Andrew Rayskiy <[email protected]> (https://github.com/GrapeGreen)" | ||
], | ||
"license": "W3C-20150513", | ||
"dependencies": { | ||
|
@@ -43,15 +44,15 @@ | |
"read": "^2.0.0" | ||
}, | ||
"devDependencies": { | ||
"@types/node": "^14.0.0", | ||
"@types/node": "^16.0.0", | ||
"esbuild": "^0.14.47", | ||
"jasmine": "^4.2.1", | ||
"mock-stdin": "^1.0.0", | ||
"prettier": "2.8.0", | ||
"typescript": "^4.7.3" | ||
}, | ||
"engines": { | ||
"node": ">= 14.0.0", | ||
"node": ">= 16.0.0", | ||
"npm": ">= 8.0.0" | ||
}, | ||
"prettier": { | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
Oops, something went wrong.