Skip to content
View stefanopulze's full-sized avatar
😀
😀

Block or report stefanopulze

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Content in all repositories owned by your account will be closed.
Maximum 250 characters. Please don’t include any personal information such as legal names or email addresses. Markdown is supported. This note will only be visible to you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
stefanopulze/README.md

Hi there 👋

Pinned Loading

  1. ssh without password ssh without password
    1
    # Generate private/public key
    2
    > ssh-keygen -t ecdsa -b 521 
    3
    > ssh-keygen -t ed25519
    4
    > ssh-keygen -t ecdsa -b 521 -f ./certs -m PEM
    5
    
                  
  2. Self-Signed SSL Cert with ECDSA Self-Signed SSL Cert with ECDSA
    1
    # find your curve
    2
    openssl ecparam -list_curves
    3
    
                  
    4
    # generate a private key for a curve
    5
    openssl ecparam -name prime256v1 -genkey -noout -out private-key.pem