Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Small RSA or DSA lib without dependencies

Tags:

c

rsa

encryption

Is there a small library for RSA or DSA without any dependencies like GMP or OpenSSL? (Written in C or Asm)

like image 763
icefex Avatar asked Nov 14 '09 19:11

icefex


1 Answers

You may find LibTomCrypt useful. It's written in C, supports RSA and DSA (along with a host of other algorithms), and is public domain software. You can read about it here.

like image 171
Emerick Rogul Avatar answered Oct 23 '22 06:10

Emerick Rogul