我正在使用CryptoPP并尝试导出每个加密/解密的步骤,以便我可以了解ElGamal的工作原理。
我一直在尝试通过本网站学习ElGamal加密:
https://cryptographyacademy.com/elgamal/
我能够找到ElGamalKeys :: PublicKey的SubgroupOrder,SubgroupGenerator和Modulus,但是我无法找到使用Alice的私有指数计算的PublicKey的第3个参数。根据网站:
Next Alice chooses the secret key sk=a between 1 and p−1 and computes A=g^a mod p
Alice then publish the public key pk=(p,g,A).
如何显式访问PublicKey中的A参数?