项目作者: rodlie

项目描述 :
RSA sign & verify
高级语言: C++
项目地址: git://github.com/rodlie/verifyrsa.git
创建时间: 2019-01-01T06:57:21Z
项目社区:https://github.com/rodlie/verifyrsa

开源协议:Other

下载


RSA sign & verify

Very simple library used to sign and verify text files. Based on example by Ian Bull.

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

  1. $ echo "Hello World!" > world.txt
  2. $ rsa-generate my 4096
  3. $ rsa-sign my_private.pem world.txt
  4. $ rsa-verify my_public.pem world.txt
  5. Valid signature!