| Crates.io | credman |
| lib.rs | credman |
| version | 0.2.0 |
| created_at | 2023-10-25 17:37:56.64752+00 |
| updated_at | 2025-02-12 15:35:59.204606+00 |
| description | A little command line tool based on RustCrypto: RSA library |
| homepage | |
| repository | https://github.com/ricky85ps/credman |
| max_upload_size | |
| id | 1013549 |
| size | 26,851 |
A little command line tool based on RustCrypto: RSA library
To encrypt your secret just do
credman --input-data "My secret" --regenerate-priv-key
this will produce multiple files, including encrypted data, the private key in postcard and pem format
Without the --regenerate-priv-key, Credman would crash due to the fact, there is no private key file given.
For more help, please call credman --help.
I just wanted to create a RSA-Key as a binary blob, which I can include via include_bytes! macro. Credman is the
outcome and may be seen as feature complete. Nevertheless improvements are welcome.