#include <QtCrypto>
Inheritance diagram for QCA::RSAPublicKey:
Public Member Functions | |
RSAPublicKey () | |
RSAPublicKey (const BigInteger &n, const BigInteger &e, const QString &provider=QString()) | |
RSAPublicKey (const RSAPrivateKey &k) | |
BigInteger | n () const |
BigInteger | e () const |
|
Generate an empty RSA public key.
|
|
Generate an RSA public key from specified parameters.
|
|
Extract the public key components from an RSA private key.
|
|
The public key value. This value is the actual public key value (the product of p and q, the random prime numbers used to generate the RSA key), also known as the public modulus. |
|
The public key exponent. This value is the exponent chosen in the original key generator step |