medea is a command-line developers toolbox, written in Rust. Similar to projects like CyberChef and DevToys, it offers tools for quick text generation and processing, like creating hashes and parsing jwts. Being a command line application, medea is easy to install and offers extension through pipe chaining and bash scripting.
You can grab the binary from the latest release: https://github.com/haondt/medea/releases
shell
cargo install haondt-medea
TODO: Installation script
The basic usage is medea [command] <options>
. See medea help
or medea help [command]
for more details. Here are some example usages:
```shell
medea hash -a sha256 --hmac 'my secret' 'my data'
medea uuid -u 5
medea ts --to iso -z America/Los_Angeles 1678742400
medea rnd -t hex 16 ```
Run tests with
shell
cargo test
See LICENSE