5

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.

BarsMonster
  • 6,483
  • 2
  • 34
  • 47

1 Answers1

8

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

BarsMonster
  • 6,483
  • 2
  • 34
  • 47