QCA::RSAPublicKey
QCA::RSAPublicKey Class Reference
#include <QtCrypto>
Inheritance diagram for QCA::RSAPublicKey:
Additional Inherited Members | |
Public Types inherited from QCA::PKey | |
enum | Type { RSA , DSA , DH } |
Static Public Member Functions inherited from QCA::PublicKey | |
static PublicKey | fromDER (const QByteArray &a, ConvertResult *result=nullptr, const QString &provider=QString()) |
static PublicKey | fromPEM (const QString &s, ConvertResult *result=nullptr, const QString &provider=QString()) |
static PublicKey | fromPEMFile (const QString &fileName, ConvertResult *result=nullptr, const QString &provider=QString()) |
Static Public Member Functions inherited from QCA::PKey | |
static QList< Type > | supportedIOTypes (const QString &provider=QString()) |
static QList< Type > | supportedTypes (const QString &provider=QString()) |
Protected Member Functions inherited from QCA::PublicKey | |
PublicKey (const QString &type, const QString &provider) | |
Protected Member Functions inherited from QCA::PKey | |
PKey (const QString &type, const QString &provider) | |
void | set (const PKey &k) |
DHPrivateKey | toDHPrivateKey () const |
DHPublicKey | toDHPublicKey () const |
DSAPrivateKey | toDSAPrivateKey () const |
DSAPublicKey | toDSAPublicKey () const |
RSAPrivateKey | toRSAPrivateKey () const |
RSAPublicKey | toRSAPublicKey () const |
Protected Member Functions inherited from QCA::Algorithm | |
Algorithm () | |
Algorithm (const QString &type, const QString &provider) | |
Detailed Description
RSA Public Key.
Definition at line 1275 of file qca_publickey.h.
Constructor & Destructor Documentation
◆ RSAPublicKey() [1/3]
QCA::RSAPublicKey::RSAPublicKey | ( | ) |
Generate an empty RSA public key.
◆ RSAPublicKey() [2/3]
QCA::RSAPublicKey::RSAPublicKey | ( | const BigInteger & | n, |
const BigInteger & | e, | ||
const QString & | provider = QString() ) |
Generate an RSA public key from specified parameters.
- Parameters
-
n the public key value e the public key exponent provider the provider to use, if a particular provider is required
◆ RSAPublicKey() [3/3]
QCA::RSAPublicKey::RSAPublicKey | ( | const RSAPrivateKey & | k | ) |
Extract the public key components from an RSA private key.
- Parameters
-
k the private key to use as the basis for the public key
Member Function Documentation
◆ e()
BigInteger QCA::RSAPublicKey::e | ( | ) | const |
The public key exponent.
This value is the exponent chosen in the original key generator step
◆ n()
BigInteger QCA::RSAPublicKey::n | ( | ) | const |
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 documentation for this class was generated from the following file:
This file is part of the KDE documentation.
Documentation copyright © 1996-2024 The KDE developers.
Generated on Fri Nov 8 2024 11:53:14 by doxygen 1.12.0 written by Dimitri van Heesch, © 1997-2006
Documentation copyright © 1996-2024 The KDE developers.
Generated on Fri Nov 8 2024 11:53:14 by doxygen 1.12.0 written by Dimitri van Heesch, © 1997-2006
KDE's Doxygen guidelines are available online.