From c40a90e54f1df466213494b1ebf5524606256ab6 Mon Sep 17 00:00:00 2001 From: AJ ONeal Date: Tue, 20 Nov 2018 01:02:36 -0700 Subject: [PATCH] v0.0.2: placeholder --- README.md | 8 ++++++++ package.json | 38 ++++++++++++++++++++++++++++++++++++++ 2 files changed, 46 insertions(+) create mode 100644 README.md create mode 100644 package.json diff --git a/README.md b/README.md new file mode 100644 index 0000000..627b599 --- /dev/null +++ b/README.md @@ -0,0 +1,8 @@ +Placeholder + +I've just completed these: + +* [ECDSA-CSR.js](https://git.coolaj86.com/coolaj86/ecdsa-csr.js) +* [eckles.js](https://git.coolaj86.com/coolaj86/eckles.js) - JWK-to-PEM and PEM-to-JWK for EC / ECDSA P-256 and P-384 + +I've got working prototypes for the RSA variants as well and I'm in the middle of cleaning them up to publish. diff --git a/package.json b/package.json new file mode 100644 index 0000000..75a89ad --- /dev/null +++ b/package.json @@ -0,0 +1,38 @@ +{ + "name": "rasha", + "version": "0.0.2", + "description": "PEM-to-JWK and JWK-to-PEM for RSA keys in a lightweight, zero-dependency library focused on perfect universal compatibility.", + "homepage": "https://git.coolaj86.com/coolaj86/rasha.js", + "main": "index.js", + "bin": { + "rasha": "bin/rasha.js" + }, + "files": [ + "bin", + "fixtures", + "lib" + ], + "directories": { + "lib": "lib" + }, + "scripts": { + "postinstall": "node lib/telemetry.js event:install", + "test": "echo \"Error: no test specified\" && exit 1" + }, + "repository": { + "type": "git", + "url": "https://git.coolaj86.com/coolaj86/rasha.js" + }, + "xkeywords": [ + "zero-dependency", + "JWK-to-PEM", + "PEM-to-JWK", + "RSA", + "2048", + "4096", + "asn1", + "x509" + ], + "author": "AJ ONeal (https://coolaj86.com/)", + "license": "MPL-2.0" +}