Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Are there any very simple RSA implementation in C++

Tags:

rsa

Are there any very simple cross-platform C++ libs which can do assymetric encription? Not necessary efficient, just working. I imagine it could be just 3-4 functions in an .h file which do arbitrary precission math and that's it.

I belive using OpenSSL here is an overkill.

like image 724
BarsMonster Avatar asked Aug 28 '10 22:08

BarsMonster


1 Answers

http://cryptopp.com/ looks to be what I need. One might tear it down to individual files, and it has RSA samples.

like image 170
BarsMonster Avatar answered Sep 30 '22 02:09

BarsMonster