16 releases
Uses old Rust 2015
0.6.3 | Jun 3, 2023 |
---|---|
0.6.2 | Dec 12, 2022 |
0.6.1 | Oct 9, 2021 |
0.5.7 | May 20, 2020 |
0.5.4 | Apr 29, 2019 |
#779 in Cryptography
1,043 downloads per month
25KB
605 lines
rsign2
A Rust implementation of Minisign.
All signatures produced by rsign
can be verified with minisign
including trusted comments.
And minisign
is able to sign files with keys generated by rsign2
.
In Rust, signatures can also be verified with the minisign-verify crate.
rsign2
is a maintained fork of rsign
, originally written by Daniel Rangel.
Main differences with rsign:
rsign2
is written in pure Rust.rsign2
has way less dependencies.rsign2
includes bug fixes and improvements.rsign2
tries to be usable as a library, not just as a command-line tool.rsign2
supports WebAssembly.
API documentation
rsign2
is only a command-line interface. It relies on the Minisign crate, that can be embedded in any application:
Usage
rsign generate
Generates a new key pair. The public key is printed in the screen and stored in rsign.pub
by default. The secret key will be written at ~/.rsign/rsign.key
. You can change the default paths with -p
and -s
respectively.
rsign sign myfile.txt
Sign myfile.txt
with your secret key. You can add a signed trusted comment with:
rsign sign myfile.txt -t "my trusted comment"
If you are signing files larger than 1Gb you must use -H
to first hash the file and sign the hash after that:
rsign sign mylargefile.bin -H
And to verify the signature with a given public key you can use:
rsign verify myfile.txt -p rsign.pub
Or if you have saved the signature file with a custom name other than myfile.txt.minisig
and want to use a public key string you can use:
rsign verify myfile.txt -P [PUBLIC KEY STRING] -x mysignature.file
You can find more information using the help subcommand as in:
rsign help [SUBCOMMAND]
USAGE:
rsign [SUBCOMMAND]
FLAGS:
-h, --help Prints help information
-V, --version Prints version information
SUBCOMMANDS:
generate Generate public and private keys
help Prints this message or the help of the given subcommand(s)
sign Sign a file with a given private key
verify Verify a signed file with a given public key
Dependencies
~3–12MB
~154K SLoC