Giter VIP home page Giter VIP logo

self-signed-certificates-generator's People

Contributors

vinalti avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar

self-signed-certificates-generator's Issues

Certificate Name doesn't accept spaces

Issue description

While creating a Certificate, if a space is present in the name, the creation of certificate will fail.
More generally that poses a problem of code injection. (which should not be a problem, as this tool should only be used by yourself, but still should not exists)

Mitigation

Avoid using spaces and prefer underscores for now _.

Solution

Add quotes around parameter of command mkdir , openssl , cd, etc.

mkdir -p $dir
key="${dir}/${id}.priv.key"
csr="${dir}/.${id}_request.csr"
pem="${dir}/${id}.pub.pem"
chain="${dir}/${id}.chain.pem"
cnf="${dir}/.config.txt"
# - Generate Private Key
openssl genrsa -out $key 4096
if [[ $? -ne 0 ]]; then echo "[E201] An error occured while generating certificate $id."; continue; fi
# - Generate Certificate Request
openssl req -new -sha256 -subj "/CN=$id" -key $key -out $csr

Allow user to choose cryptographic algorithms

Feature description

Allow user to change currently default algorithms for certificates such as the hash sha256, key type aes256, etc.

Implementation

Different type of implementation can be put in place:

  • The addition of one or several options such as --key-type=[rsa|ec] or --rsa / --ec and --hash=[sha256|...]
  • The addition of a prompt during the generation of the private key

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.