Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/dyne/clj-openssh-keygen
A platform-independent Clojure library to genereate OpenSSH compliant key-pairs without using ssh-keygen
https://github.com/dyne/clj-openssh-keygen
authentication cryptography keygen keypair ssh ssh-key
Last synced: 7 days ago
JSON representation
A platform-independent Clojure library to genereate OpenSSH compliant key-pairs without using ssh-keygen
- Host: GitHub
- URL: https://github.com/dyne/clj-openssh-keygen
- Owner: dyne
- License: epl-1.0
- Created: 2017-06-29T11:09:08.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2020-06-04T09:53:41.000Z (over 4 years ago)
- Last Synced: 2024-05-01T09:46:56.387Z (7 months ago)
- Topics: authentication, cryptography, keygen, keypair, ssh, ssh-key
- Language: Clojure
- Size: 6.84 KB
- Stars: 0
- Watchers: 5
- Forks: 5
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# clj-OpenSSH-keygen
[![Clojars Project](https://clojars.org/org.clojars.dyne/clj-openssh-keygen/latest-version.svg)](https://clojars.org/org.clojars.dyne/clj-openssh-keygen)
A platform-independent Clojure library to genereate OpenSSH compliant
key-pairs without executing any ssh binary on the system.## Usage
To generate a keypair `testkey.pub` and `testkey` in the current
execution directory:```clj
(let [kp (generate-key-pair)]
(write-key-pair kp "testkey")))
```## License
Copyright (C) 2016-2017 Dyne.org foundation
Sourcecode written and maintained by Denis Roio
Distributed under the Eclipse Public License either version 1.0 or (at
your option) any later version.