Giter Site home page Giter Site logo

waitingsong / node-myca Goto Github PK

View Code? Open in Web Editor NEW
3.0 3.0 2.0 877 KB

Create Self-signed CA certificate for development use and issue server or client certificates, generated using openssl

License: MIT License

TypeScript 81.86% JavaScript 11.80% Shell 6.34%
ca certificate myca self-signed openssl pkcs12 x509 rsa ecc pfx

node-myca's Introduction

myca

Create my CA center, generate a self signed x509 certificate, issue server certificate from node.js via openssl. Multiple center supported. RSA, EC(P-256, P-384) supported.

GitHub tag License ci codecov Conventional Commits lerna

安装全局依赖

npm i -g c8 lerna rollup tsx

Installing

npm install --save myca

CLI

  • myca-cli

  • Installing by npm i -g myca-cli

  • Command help

    • myca
    • myca initca -h
    • myca issue -h
  • Example

    myca initca --days=10950 --alg=ec --pass=capass \
      --cn="Root CA" --ou="waitingsong.com" --o="waitingsong" --l="CD" --c=CN \
    myca issue --kind=server --days=3650 --pass=mypass \
      --cn="waitingsong.com" --o="waitingsong" --c=CN --caKeyPass=capass \
      --centerName=default --alg=ec \
      --ips="127.0.0.1, 192.168.0.1" \
      --SAN="localhost" 
    myca issue --kind=client --days=3650 --pass=mypass \
      --cn="client" --o="it" --c=CN --caKeyPass=capss \
      --centerName=default --alg=ec 

Usage

  • Initialize default center
    import { initDefaultCenter } from 'myca'
    
    await initDefaultCenter()

Packages

Package Version
myca main-svg
myca-cli cli-svg

License

MIT

Languages


node-myca's People

Contributors

dependabot[bot] avatar mlvtito avatar waitingsong avatar

Stargazers

 avatar  avatar  avatar

Watchers

 avatar  avatar  avatar

Forkers

mlvtito zeus911

node-myca's Issues

C'ant get the exemple to work

Hello.

I was trying to run the pfx example but the error below stoped me.
file of param configFile of signOpts not exists: ~.myca/.config"

i cant figure out how to create the need conf file.

[My code]
myca.initDefaultCenter().catch(console.error)
/*
myca
.initCaCert({
days: 10950, // 30years
pass: 'mycapass',
CN: 'My Root CA', // Common Name
O: 'My Company', // Organization Name (eg, company)
C: 'CN', // Country Name (2 letter code)
}).catch(console.error)
*/

	myca
	.genCert({
		centerName: 'default',
		caKeyPass: 'mycapass',
		kind: 'client',   // pfx cert
		days: 730,
		pass: 'fooo',   // at least 4 letters
		CN: 'www.waitingsong.com',    // Common Name
		C: 'CN',   // Country Name (2 letter code)
	})
	.then((ret) => {
	console.log(ret.pfxFile)
	})
	.catch(console.error)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.