An open API service indexing awesome lists of open source software.

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

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