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
- Host: GitHub
- URL: https://github.com/rodlie/verifyrsa
- Owner: rodlie
- License: other
- Created: 2019-01-01T06:57:21.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2022-07-29T18:07:09.000Z (almost 4 years ago)
- Last Synced: 2025-03-31T11:51:10.662Z (about 1 year ago)
- Topics: asc, cmake, code-signing, msvc, openssl, pem, private-key, public-key, rsa, sha256, sign, signature, txt, verify
- Language: C++
- Homepage:
- Size: 14.6 KB
- Stars: 4
- Watchers: 2
- Forks: 4
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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!
```