From 12024d8df44c62b39869d3bc85aa9d733508bb37 Mon Sep 17 00:00:00 2001 From: Jonathan Barrow Date: Thu, 22 Feb 2024 11:57:00 -0500 Subject: [PATCH] add missing semi-colon --- patch.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/patch.js b/patch.js index b3f50de..2dd785b 100644 --- a/patch.js +++ b/patch.js @@ -206,7 +206,7 @@ function forgeCertificateChain(options) { siteCertificate.sign(caPrivateKey, md.sha1.create()); // TODO - Make this configurable? What other signatures work for the Wii U // * Create the cert chain - const chain = `${pki.certificateToPem(siteCertificate)}\n${pki.certificateToPem(forgedCA)}\n` + const chain = `${pki.certificateToPem(siteCertificate)}\n${pki.certificateToPem(forgedCA)}\n`; // * Save everything to disk // TODO - Write public keys?