Skip to content

Commit

Permalink
Remove key material not managed by update script
Browse files Browse the repository at this point in the history
These keys predate the ca folder and update script contained in there.
I udpated the tests using them to use one of the keys managed by the
update script and removed them
  • Loading branch information
stusmall committed Oct 4, 2023
1 parent 8610c66 commit 4f74632
Show file tree
Hide file tree
Showing 4 changed files with 1 addition and 47 deletions.
2 changes: 1 addition & 1 deletion tests/server.js
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ exports.createEchoServer = function () {

exports.createSSLServer = function (opts) {
var i
var options = { 'key': path.join(__dirname, 'ssl', 'test.key'), 'cert': path.join(__dirname, 'ssl', 'test.crt') }
var options = { 'key': path.join(__dirname, 'ssl', 'ca', 'server.key'), 'cert': path.join(__dirname, 'ssl', 'ca', 'server.crt') }
if (opts) {
for (i in opts) {
options[i] = opts[i]
Expand Down
16 changes: 0 additions & 16 deletions tests/ssl/npm-ca.crt

This file was deleted.

15 changes: 0 additions & 15 deletions tests/ssl/test.crt

This file was deleted.

15 changes: 0 additions & 15 deletions tests/ssl/test.key

This file was deleted.

0 comments on commit 4f74632

Please sign in to comment.