https://github.com/jwerle/ed25519-keygen
Simple tool to generate ed25519 key pairs and write them to disk. Written in Kotlin (Native) and backed by libuv and libsodium
https://github.com/jwerle/ed25519-keygen
ed25519 keygen kotlin native
Last synced: 6 months ago
JSON representation
Simple tool to generate ed25519 key pairs and write them to disk. Written in Kotlin (Native) and backed by libuv and libsodium
- Host: GitHub
- URL: https://github.com/jwerle/ed25519-keygen
- Owner: jwerle
- License: mit
- Created: 2019-03-09T23:50:06.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2019-04-04T12:59:48.000Z (over 6 years ago)
- Last Synced: 2025-02-02T17:56:19.026Z (8 months ago)
- Topics: ed25519, keygen, kotlin, native
- Language: Kotlin
- Size: 29.3 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
ed25519-keygen
==============Simple tool to generate ed25519 key pairs and write them to disk. Written in Kotlin (Native) and backed by libuv and libsodium
## Installation
```sh
$ npm install -g jwerle/ed25519-keygen
```## Prerequisites
* [Kotlin/Native](https://github.com/JetBrains/kotlin-native) and the `konanc` command line program.
## Usage
```
usage: ed25519-keygen [-hV] [options]options:
-h, --help Show this message
-V, --version Output program version
-o, --out Output file path
-s, --seed Seed value or path to seed file
-f, --force Force overwrites of files
--postfix A postfix for output file names. Set to 'false'
to disable' (default: _ed25519)```
## Example
```sh
$ ed25519-keygen -o id
$ cat id_ed25519 id_ed25519.pub ## outputs secret and public key respectively
```## License
MIT