15 lines
484 B
Python
15 lines
484 B
Python
# pylint: disable=too-few-public-methods
|
|
class Algorithm:
|
|
RSA = "RSA"
|
|
ElGamal = "ElGamal"
|
|
ExponentialElGamal = "Exponential-ElGamal"
|
|
EllipticCurveElGamal = "EllipticCurve-ElGamal"
|
|
Paillier = "Paillier"
|
|
DamgardJurik = "Damgard-Jurik"
|
|
OkamotoUchiyama = "Okamoto-Uchiyama"
|
|
Benaloh = "Benaloh"
|
|
NaccacheStern = "Naccache-Stern"
|
|
GoldwasserMicali = "Goldwasser-Micali"
|
|
SanderYoungYung = "Sander-Young-Yung"
|
|
BonehGohNissim = "Boneh-Goh-Nissim"
|