Liking cljdoc? Tell your friends :D

clj-ssh-keygen

Clojars Project

Generate RSA PKCS #1 keys from scratch and without 3rd party libs in Clojure, export PEM and OpenSSH formats

☛ intended for hacking and educational purposes only!

public key

Usage

 (let [key (generate-key)]
    (write-private-key! key "pvt.pem")
    (write-public-key! key "pub.pem")
    (write-openssh-public-key! key "id_rsa.pub")))

for generating a default (2048 bit) length key, while:

(write-private-key! (generate-key 2345) "pvt.pem")

will issue a custom length key:

$ openssl rsa -noout -text -in pvt.pem|head -n 1
RSA Private-Key: (2345 bit, 2 primes)

License

Copyright (c) 2020-2021 Saidone

Distributed under the MIT License

Can you improve this documentation? These fine people already did:
Saidone & saidone
Edit on GitHub

cljdoc is a website building & hosting documentation for Clojure/Script libraries

× close