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.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only 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