Free implementation of Elgamal

I am looking for free implementations of the Elgamal encryption algorithm. As far as I can see, although this is a well-known algorithm, it seems that there are only two free implementations:

OpenSSL, beecrypt, Nettle does not implement Elgamal.

Is there another free and well-tested implementation of Elgamal that is not listed?

+6
source share
1 answer

Crypto ++ has ElGamal support .

I used Crypto ++ cryptographic cryptography some time ago, it was well supported and tested well (it has a unit-test called ValidateElGamal() ).

0
source

Source: https://habr.com/ru/post/911784/


All Articles