#include <QtCrypto>
Inheritance diagram for QCA::RSAPrivateKey:
Public Member Functions | |
RSAPrivateKey () | |
RSAPrivateKey (const BigInteger &n, const BigInteger &e, const BigInteger &p, const BigInteger &q, const BigInteger &d, const QString &provider=QString()) | |
BigInteger | n () const |
BigInteger | e () const |
BigInteger | p () const |
BigInteger | q () const |
BigInteger | d () const |
|
Generate an empty RSA private key.
|
|
Generate an RSA private key from specified parameters.
|
|
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 |
|
One of the two random primes used to generate the private key.
|
|
The second of the two random primes used to generate the private key.
|
|
The inverse of the exponent, module (p-1)(q-1).
|