You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

1.8 KiB

cryptofun Go Report Card

Crypto algorithms from scratch. Academic purposes only.

RSA

https://en.wikipedia.org/wiki/RSA_(cryptosystem)#

Paillier

https://en.wikipedia.org/wiki/Paillier_cryptosystem

Shamir Secret Sharing

https://en.wikipedia.org/wiki/Shamir%27s_Secret_Sharing

Diffie-Hellman

https://en.wikipedia.org/wiki/Diffie%E2%80%93Hellman_key_exchange

ECC

https://en.wikipedia.org/wiki/Elliptic-curve_cryptography

ECC ElGamal

https://en.wikipedia.org/wiki/ElGamal_encryption

ECC ECDSA

https://en.wikipedia.org/wiki/Elliptic_Curve_Digital_Signature_Algorithm

Schnorr signature

https://en.wikipedia.org/wiki/Schnorr_signature


To run all tests:

go test ./... -v