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

https://github.com/rodlie/verifyrsa

RSA sign & verify
https://github.com/rodlie/verifyrsa

asc cmake code-signing msvc openssl pem private-key public-key rsa sha256 sign signature txt verify

Last synced: about 1 year ago
JSON representation

RSA sign & verify

Awesome Lists containing this project

README

          

# RSA sign & verify

Very simple library used to sign and verify text files. Based on example by [Ian Bull](https://github.com/irbull).

Requires CMake and OpenSSL. Tested on Windows with MSVC 2013 and Linux with GCC 5.5.

```
$ echo "Hello World!" > world.txt
$ rsa-generate my 4096
$ rsa-sign my_private.pem world.txt
$ rsa-verify my_public.pem world.txt
Valid signature!
```