From 30e617ada18e5d18f7b10a8a89278e3aabff1aed Mon Sep 17 00:00:00 2001 From: AJ ONeal Date: Mon, 12 Nov 2018 11:50:49 -0700 Subject: [PATCH] v0.0.2: WIP, useful as an example --- README.md | 5 +- convert-to-der.js | 16 ++ package.json | 2 +- pubkey-cli.js | 23 +++ pubkey.js | 181 +++++++++++++++++++++ re-sign.js | 404 ++++++++++++++++++++++++++++++++++++++++++++++ 6 files changed, 629 insertions(+), 2 deletions(-) create mode 100644 convert-to-der.js create mode 100644 pubkey-cli.js create mode 100644 pubkey.js create mode 100644 re-sign.js diff --git a/README.md b/README.md index 2c33379..217dc91 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,9 @@ This is being ported from code from rsa-compat.js, greenlock.html (bacme.js), and others. -Today is 2018-10-10 come back in a week. +This is my project for the weekend. I expect to be finished today (Monday Nov 12th, 2018) +* 2018-10-10 (Saturday) work has begun +* 2018-10-11 (Sunday) W00T! got a CSR generated for RSA with VanillaJS ArrayBuffer +* 2018-10-12 (Monday) Figuring out ECDSA CSRs right now