Qt Cryptographic Architecture
qca_publickey.h
Go to the documentation of this file.
1 /*
2  * qca_publickey.h - Qt Cryptographic Architecture
3  * Copyright (C) 2003-2007 Justin Karneges <justin@affinix.com>
4  * Copyright (C) 2004,2005 Brad Hards <bradh@frogmouth.net>
5  *
6  * This library is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Lesser General Public
8  * License as published by the Free Software Foundation; either
9  * version 2.1 of the License, or (at your option) any later version.
10  *
11  * This library is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14  * Lesser General Public License for more details.
15  *
16  * You should have received a copy of the GNU Lesser General Public
17  * License along with this library; if not, write to the Free Software
18  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
19  * 02110-1301 USA
20  *
21  */
22 
33 #ifndef QCA_PUBLICKEY_H
34 #define QCA_PUBLICKEY_H
35 
36 #include "qca_core.h"
37 #include <QObject>
38 
39 namespace QCA {
40 
41 class PublicKey;
42 class PrivateKey;
43 class KeyGenerator;
44 class RSAPublicKey;
45 class RSAPrivateKey;
46 class DSAPublicKey;
47 class DSAPrivateKey;
48 class DHPublicKey;
49 class DHPrivateKey;
50 
55 {
60 };
61 
74 {
81  EMSA3_Raw,
87 };
88 
93 {
97 };
98 
103 {
110 };
111 
119 {
123  ErrorFile
124 };
125 
135 {
146  IETF_8192
147 
148 };
149 
162 QCA_EXPORT QByteArray emsa3Encode(const QString &hashName, const QByteArray &digest, int size = -1);
163 
171 class QCA_EXPORT DLGroup
172 {
173 public:
174  DLGroup();
175 
183  DLGroup(const BigInteger &p, const BigInteger &q, const BigInteger &g);
184 
191  DLGroup(const BigInteger &p, const BigInteger &g);
192 
198  DLGroup(const DLGroup &from);
199  ~DLGroup();
200 
206  DLGroup &operator=(const DLGroup &from);
207 
214  static QList<DLGroupSet> supportedGroupSets(const QString &provider = QString());
215 
219  bool isNull() const;
220 
224  BigInteger p() const;
225 
229  BigInteger q() const;
230 
234  BigInteger g() const;
235 
236 private:
237  class Private;
238  Private *d;
239 };
240 
250 class QCA_EXPORT PKey : public Algorithm
251 {
252 public:
256  enum Type
257  {
258  RSA,
259  DSA,
260  DH
261  };
262 
266  PKey();
267 
273  PKey(const PKey &from);
274 
275  ~PKey() override;
276 
282  PKey &operator=(const PKey &from);
283 
315  static QList<Type> supportedTypes(const QString &provider = QString());
316 
346  static QList<Type> supportedIOTypes(const QString &provider = QString());
347 
353  bool isNull() const;
354 
360  Type type() const;
361 
365  int bitSize() const;
366 
370  bool isRSA() const;
371 
375  bool isDSA() const;
376 
380  bool isDH() const;
381 
385  bool isPublic() const;
386 
390  bool isPrivate() const;
391 
396  bool canExport() const;
397 
401  bool canKeyAgree() const;
402 
410 
415 
421  bool operator==(const PKey &a) const;
422 
428  bool operator!=(const PKey &a) const;
429 
430 protected:
437  PKey(const QString &type, const QString &provider);
438 
444  void set(const PKey &k);
445 
456 
467 
478 
489 
500 
511 
512 private:
513  void assignToPublic(PKey *dest) const;
514  void assignToPrivate(PKey *dest) const;
515 
516  class Private;
517  Private *d;
518 };
519 
528 class QCA_EXPORT PublicKey : public PKey
529 {
530 public:
535 
542 
550  PublicKey(const QString &fileName);
551 
557  PublicKey(const PublicKey &from);
558 
559  ~PublicKey() override;
560 
567 
575 
583 
590  DHPublicKey toDH() const;
591 
597  bool canEncrypt() const;
598 
604  bool canDecrypt() const;
605 
611  bool canVerify() const;
612 
620 
628 
640 
648 
654  void update(const MemoryRegion &a);
655 
681  bool validSignature(const QByteArray &sig);
682 
697  const QByteArray & sig,
698  SignatureAlgorithm alg,
699  SignatureFormat format = DefaultFormat);
700 
704  QByteArray toDER() const;
705 
714  QString toPEM() const;
715 
727  bool toPEMFile(const QString &fileName) const;
728 
751  static PublicKey fromDER(const QByteArray &a, ConvertResult *result = nullptr, const QString &provider = QString());
752 
778  static PublicKey fromPEM(const QString &s, ConvertResult *result = nullptr, const QString &provider = QString());
779 
807  static PublicKey
808  fromPEMFile(const QString &fileName, ConvertResult *result = nullptr, const QString &provider = QString());
809 
810 protected:
817  PublicKey(const QString &type, const QString &provider);
818 
819 private:
820  class Private;
821  Private *d;
822 };
823 
832 class QCA_EXPORT PrivateKey : public PKey
833 {
834 public:
839 
851  explicit PrivateKey(const QString &fileName, const SecureArray &passphrase = SecureArray());
852 
858  PrivateKey(const PrivateKey &from);
859 
860  ~PrivateKey() override;
861 
868 
873 
878 
883 
889  bool canDecrypt() const;
890 
896  bool canEncrypt() const;
897 
903  bool canSign() const;
904 
912 
924 
932 
943 
952  void update(const MemoryRegion &a);
953 
960  QByteArray signature();
961 
975 
982 
990  static QList<PBEAlgorithm> supportedPBEAlgorithms(const QString &provider = QString());
991 
1002  SecureArray toDER(const SecureArray &passphrase = SecureArray(), PBEAlgorithm pbe = PBEDefault) const;
1003 
1016  QString toPEM(const SecureArray &passphrase = SecureArray(), PBEAlgorithm pbe = PBEDefault) const;
1017 
1034  bool toPEMFile(const QString & fileName,
1035  const SecureArray &passphrase = SecureArray(),
1036  PBEAlgorithm pbe = PBEDefault) const;
1037 
1056  static PrivateKey fromDER(const SecureArray &a,
1057  const SecureArray &passphrase = SecureArray(),
1058  ConvertResult * result = nullptr,
1059  const QString & provider = QString());
1060 
1079  static PrivateKey fromPEM(const QString & s,
1080  const SecureArray &passphrase = SecureArray(),
1081  ConvertResult * result = nullptr,
1082  const QString & provider = QString());
1083 
1106  static PrivateKey fromPEMFile(const QString & fileName,
1107  const SecureArray &passphrase = SecureArray(),
1108  ConvertResult * result = nullptr,
1109  const QString & provider = QString());
1110 
1111 protected:
1119  PrivateKey(const QString &type, const QString &provider);
1120 
1121 private:
1122  class Private;
1123  Private *d;
1124 };
1125 
1137 class QCA_EXPORT KeyGenerator : public QObject
1138 {
1139  Q_OBJECT
1140 public:
1146  KeyGenerator(QObject *parent = nullptr);
1147 
1148  ~KeyGenerator() override;
1149 
1158  bool blockingEnabled() const;
1159 
1168  void setBlockingEnabled(bool b);
1169 
1175  bool isBusy() const;
1176 
1193  PrivateKey createRSA(int bits, int exp = 65537, const QString &provider = QString());
1194 
1210  PrivateKey createDSA(const DLGroup &domain, const QString &provider = QString());
1211 
1226  PrivateKey createDH(const DLGroup &domain, const QString &provider = QString());
1227 
1234  PrivateKey key() const;
1235 
1244  DLGroup createDLGroup(QCA::DLGroupSet set, const QString &provider = QString());
1245 
1249  DLGroup dlGroup() const;
1250 
1251 Q_SIGNALS:
1257  void finished();
1258 
1259 private:
1260  Q_DISABLE_COPY(KeyGenerator)
1261 
1262  class Private;
1263  friend class Private;
1264  Private *d;
1265 };
1266 
1275 class QCA_EXPORT RSAPublicKey : public PublicKey
1276 {
1277 public:
1282 
1291  RSAPublicKey(const BigInteger &n, const BigInteger &e, const QString &provider = QString());
1292 
1299 
1307  BigInteger n() const;
1308 
1315  BigInteger e() const;
1316 };
1317 
1326 class QCA_EXPORT RSAPrivateKey : public PrivateKey
1327 {
1328 public:
1333 
1346  const BigInteger &e,
1347  const BigInteger &p,
1348  const BigInteger &q,
1349  const BigInteger &d,
1350  const QString & provider = QString());
1351 
1359  BigInteger n() const;
1360 
1367  BigInteger e() const;
1368 
1372  BigInteger p() const;
1373 
1378  BigInteger q() const;
1379 
1383  BigInteger d() const;
1384 };
1385 
1394 class QCA_EXPORT DSAPublicKey : public PublicKey
1395 {
1396 public:
1401 
1410  DSAPublicKey(const DLGroup &domain, const BigInteger &y, const QString &provider = QString());
1411 
1418 
1422  DLGroup domain() const;
1423 
1427  BigInteger y() const;
1428 };
1429 
1438 class QCA_EXPORT DSAPrivateKey : public PrivateKey
1439 {
1440 public:
1445 
1455  DSAPrivateKey(const DLGroup &domain, const BigInteger &y, const BigInteger &x, const QString &provider = QString());
1456 
1460  DLGroup domain() const;
1461 
1465  BigInteger y() const;
1466 
1470  BigInteger x() const;
1471 };
1472 
1481 class QCA_EXPORT DHPublicKey : public PublicKey
1482 {
1483 public:
1488 
1497  DHPublicKey(const DLGroup &domain, const BigInteger &y, const QString &provider = QString());
1498 
1505 
1509  DLGroup domain() const;
1510 
1514  BigInteger y() const;
1515 };
1516 
1525 class QCA_EXPORT DHPrivateKey : public PrivateKey
1526 {
1527 public:
1532 
1542  DHPrivateKey(const DLGroup &domain, const BigInteger &y, const BigInteger &x, const QString &provider = QString());
1543 
1547  DLGroup domain() const;
1548 
1552  BigInteger y() const;
1553 
1557  BigInteger x() const;
1558 };
1560 }
1561 
1562 #endif
QCA::PublicKey::verifyMessage
bool verifyMessage(const MemoryRegion &a, const QByteArray &sig, SignatureAlgorithm alg, SignatureFormat format=DefaultFormat)
Single step message verification.
QCA::DLGroup
A discrete logarithm group.
Definition: qca_publickey.h:172
QCA::RSAPublicKey::RSAPublicKey
RSAPublicKey(const BigInteger &n, const BigInteger &e, const QString &provider=QString())
Generate an RSA public key from specified parameters.
QCA::PublicKey::toPEMFile
bool toPEMFile(const QString &fileName) const
Export the key in Privacy Enhanced Mail (PEM) to a file.
QCA::PKey::RSA
@ RSA
RSA key.
Definition: qca_publickey.h:258
QObject
QCA::KeyGenerator::dlGroup
DLGroup dlGroup() const
The current discrete logarithm group.
QCA::PublicKey::PublicKey
PublicKey()
Create an empty (null) public key.
QCA::PKey::set
void set(const PKey &k)
Set the key.
QCA::ErrorFile
@ ErrorFile
Failure because of incorrect file.
Definition: qca_publickey.h:123
QCA::PKey::toRSAPublicKey
RSAPublicKey toRSAPublicKey() const
Interpret this key as an RSAPublicKey.
QCA::EMSA3_MD5
@ EMSA3_MD5
MD5, with EMSA3 (ie PKCS#1 Version 1.5) encoding (this is the usual RSA algorithm)
Definition: qca_publickey.h:78
QCA::DHPublicKey::domain
DLGroup domain() const
The discrete logarithm group that is being used.
QCA::PKey::PKey
PKey(const PKey &from)
Standard copy constructor.
QCA::DSAPrivateKey::y
BigInteger y() const
the public random value
QCA::DLGroup::p
BigInteger p() const
Provide the p component of the group.
QCA::PrivateKey::fromPEMFile
static PrivateKey fromPEMFile(const QString &fileName, const SecureArray &passphrase=SecureArray(), ConvertResult *result=nullptr, const QString &provider=QString())
Import the key in Privacy Enhanced Mail (PEM) format from a file.
QCA::KeyGenerator::createRSA
PrivateKey createRSA(int bits, int exp=65537, const QString &provider=QString())
Generate an RSA key of the specified length.
QCA::PKey::toDSAPrivateKey
DSAPrivateKey toDSAPrivateKey() const
Interpret this key as a DSAPrivateKey.
QCA::IETF_8192
@ IETF_8192
8192-bit MODP Group ("group 18") from RFC3526 Section 7.
Definition: qca_publickey.h:146
QCA::PrivateKey::toDSA
DSAPrivateKey toDSA() const
Interpret / convert the key to a DSA key.
QCA::EMSA3_Raw
@ EMSA3_Raw
EMSA3 without computing a message digest or a DigestInfo encoding (identical to PKCS#11's CKM_RSA_PKC...
Definition: qca_publickey.h:81
QCA::PublicKey::fromPEM
static PublicKey fromPEM(const QString &s, ConvertResult *result=nullptr, const QString &provider=QString())
QCA::PrivateKey::encrypt
SecureArray encrypt(const SecureArray &a, EncryptionAlgorithm alg)
Encrypt a message using a specified algorithm.
QCA::SignatureFormat
SignatureFormat
Signature formats (DSA only)
Definition: qca_publickey.h:93
QCA::PKey::toPrivateKey
PrivateKey toPrivateKey() const
Interpret this key as a PrivateKey.
QCA::EMSA1_SHA1
@ EMSA1_SHA1
SHA1, with EMSA1 (IEEE1363-2000) encoding (this is the usual DSA algorithm - FIPS186)
Definition: qca_publickey.h:76
QCA::DLGroup::supportedGroupSets
static QList< DLGroupSet > supportedGroupSets(const QString &provider=QString())
Provide a list of the supported group sets.
QCA::DSAPrivateKey::domain
DLGroup domain() const
The discrete logarithm group that is being used.
QCA::PublicKey::fromDER
static PublicKey fromDER(const QByteArray &a, ConvertResult *result=nullptr, const QString &provider=QString())
QCA::PrivateKey
Generic private key.
Definition: qca_publickey.h:833
QCA::DLGroup::DLGroup
DLGroup(const DLGroup &from)
Standard copy constructor.
QCA::PrivateKey::toRSA
RSAPrivateKey toRSA() const
Interpret / convert the key to an RSA key.
QCA::PrivateKey::signMessage
QByteArray signMessage(const MemoryRegion &a, SignatureAlgorithm alg, SignatureFormat format=DefaultFormat)
One step signature process.
QCA
QCA - the Qt Cryptographic Architecture.
Definition: qca_basic.h:41
QCA::PKey::bitSize
int bitSize() const
Report the number of bits in the key.
QCA::Algorithm
General superclass for an algorithm.
Definition: qca_core.h:1164
QCA::PKey::isPublic
bool isPublic() const
Test if the key is a public key.
QCA::DLGroup::DLGroup
DLGroup(const BigInteger &p, const BigInteger &q, const BigInteger &g)
Construct a discrete logarithm group from raw parameters.
QCA::PublicKey::canEncrypt
bool canEncrypt() const
Test if this key can be used for encryption.
QCA::IETF_1024
@ IETF_1024
Group 2 from RFC 2412, Section E.2.
Definition: qca_publickey.h:140
QCA::PBES2_DES_SHA1
@ PBES2_DES_SHA1
PKCS#5 v2.0 DES/CBC,SHA1.
Definition: qca_publickey.h:105
QCA::DSA_512
@ DSA_512
512 bit group, for compatibility with JCE
Definition: qca_publickey.h:136
QCA::PrivateKey::canSign
bool canSign() const
Test if this key can be used for signing.
QCA::KeyGenerator::KeyGenerator
KeyGenerator(QObject *parent=nullptr)
Create a new key generator.
QCA::PublicKey::PublicKey
PublicKey(const PrivateKey &k)
Create a public key based on a specified private key.
QCA::SymmetricKey
Container for keys for symmetric encryption algorithms.
Definition: qca_core.h:1264
QList
QCA::PrivateKey::maximumEncryptSize
int maximumEncryptSize(EncryptionAlgorithm alg) const
The maximum message size that can be encrypted with a specified algorithm.
QCA::KeyGenerator::blockingEnabled
bool blockingEnabled() const
Test whether the key generator is set to operate in blocking mode, or not.
QCA::DLGroup::operator=
DLGroup & operator=(const DLGroup &from)
Standard assignment operator.
QCA::DSAPublicKey::DSAPublicKey
DSAPublicKey(const DLGroup &domain, const BigInteger &y, const QString &provider=QString())
Create a DSA public key.
QCA::RSAPublicKey
RSA Public Key.
Definition: qca_publickey.h:1276
QCA::DHPublicKey::DHPublicKey
DHPublicKey(const DHPrivateKey &k)
Create a Diffie-Hellman public key from a specified private key.
QCA::PublicKey::toDER
QByteArray toDER() const
Export the key in Distinguished Encoding Rules (DER) format.
QCA::IETF_1536
@ IETF_1536
1536-bit MODP Group ("group 5") from RFC3526 Section 2.
Definition: qca_publickey.h:141
QCA::EMSA3_SHA224
@ EMSA3_SHA224
SHA224, with EMSA3 (ie PKCS#1 Version 1.5) encoding.
Definition: qca_publickey.h:83
QCA::PublicKey::decrypt
bool decrypt(const SecureArray &in, SecureArray *out, EncryptionAlgorithm alg)
Decrypt the message.
QCA::PublicKey::toDH
DHPublicKey toDH() const
Convenience method to convert this key to a DHPublicKey.
QCA::SignatureAlgorithm
SignatureAlgorithm
Signature algorithm variants.
Definition: qca_publickey.h:74
QCA::EME_PKCS1v15_SSL
@ EME_PKCS1v15_SSL
PKCS#1, Version 1.5 with an SSL-specific modification.
Definition: qca_publickey.h:58
QCA::PrivateKey::PrivateKey
PrivateKey(const PrivateKey &from)
Copy constructor.
QCA::PublicKey::maximumEncryptSize
int maximumEncryptSize(EncryptionAlgorithm alg) const
The maximum message size that can be encrypted with a specified algorithm.
QCA::PKey::isNull
bool isNull() const
Test if the key is null (empty)
QCA::PrivateKey::startSign
void startSign(SignatureAlgorithm alg, SignatureFormat format=DefaultFormat)
Initialise the message signature process.
QCA::PrivateKey::PrivateKey
PrivateKey()
Create an empty private key.
QCA::RSAPublicKey::RSAPublicKey
RSAPublicKey()
Generate an empty RSA public key.
QCA::EMSA3_RIPEMD160
@ EMSA3_RIPEMD160
RIPEMD160, with EMSA3 (ie PKCS#1 Version 1.5) encoding.
Definition: qca_publickey.h:80
QCA::PrivateKey::fromDER
static PrivateKey fromDER(const SecureArray &a, const SecureArray &passphrase=SecureArray(), ConvertResult *result=nullptr, const QString &provider=QString())
Import the key from Distinguished Encoding Rules (DER) format.
QCA::PKey::operator!=
bool operator!=(const PKey &a) const
test if two keys are not equal
QCA::PBES2_AES192_SHA1
@ PBES2_AES192_SHA1
PKCS#5 v2.0 AES-192/CBC,SHA1.
Definition: qca_publickey.h:108
QCA::PKey::toDHPublicKey
DHPublicKey toDHPublicKey() const
Interpret this key as an DHPublicKey.
QCA::DLGroup::isNull
bool isNull() const
Test if the group is empty.
QCA::KeyGenerator::key
PrivateKey key() const
Return the last generated key.
QCA::PKey::toDSAPublicKey
DSAPublicKey toDSAPublicKey() const
Interpret this key as an DSAPublicKey.
QCA::KeyGenerator::finished
void finished()
Emitted when the key generation is complete.
QCA::PKey::toRSAPrivateKey
RSAPrivateKey toRSAPrivateKey() const
Interpret this key as an RSAPrivateKey.
QCA::PBES2_TripleDES_SHA1
@ PBES2_TripleDES_SHA1
PKCS#5 v2.0 TripleDES/CBC,SHA1.
Definition: qca_publickey.h:106
QCA::PrivateKey::supportedPBEAlgorithms
static QList< PBEAlgorithm > supportedPBEAlgorithms(const QString &provider=QString())
List the supported Password Based Encryption Algorithms that can be used to protect the key.
QCA::EncryptionAlgorithm
EncryptionAlgorithm
Encryption algorithms.
Definition: qca_publickey.h:55
QCA::DHPrivateKey::DHPrivateKey
DHPrivateKey(const DLGroup &domain, const BigInteger &y, const BigInteger &x, const QString &provider=QString())
Create a Diffie-Hellman private key.
QCA::PBEDefault
@ PBEDefault
Use modern default (same as PBES2_TripleDES_SHA1)
Definition: qca_publickey.h:104
QCA::DSAPublicKey::domain
DLGroup domain() const
The discrete logarithm group that is being used.
QCA::PKey::canExport
bool canExport() const
Test if the key data can be exported.
QCA::PKey::toPublicKey
PublicKey toPublicKey() const
Interpret this key as a PublicKey.
QCA::PKey::toDHPrivateKey
DHPrivateKey toDHPrivateKey() const
Interpret this key as a DHPrivateKey.
QCA::DHPublicKey::y
BigInteger y() const
The public random value associated with this key.
QCA::PrivateKey::decrypt
bool decrypt(const SecureArray &in, SecureArray *out, EncryptionAlgorithm alg)
Decrypt the message.
QCA::PKey::operator=
PKey & operator=(const PKey &from)
Standard assignment operator.
QCA::KeyGenerator::createDH
PrivateKey createDH(const DLGroup &domain, const QString &provider=QString())
Generate a Diffie-Hellman key.
QCA::KeyGenerator::isBusy
bool isBusy() const
Test if the key generator is currently busy, or not.
QCA::PrivateKey::signature
QByteArray signature()
The resulting signature.
QCA::EMSA3_MD2
@ EMSA3_MD2
MD2, with EMSA3 (ie PKCS#1 Version 1.5) encoding.
Definition: qca_publickey.h:79
QCA::PrivateKey::toPEM
QString toPEM(const SecureArray &passphrase=SecureArray(), PBEAlgorithm pbe=PBEDefault) const
Export the key in Privacy Enhanced Mail (PEM) format.
QCA::PrivateKey::toPEMFile
bool toPEMFile(const QString &fileName, const SecureArray &passphrase=SecureArray(), PBEAlgorithm pbe=PBEDefault) const
Export the key in Privacy Enhanced Mail (PEM) format to a file.
QCA::PublicKey::PublicKey
PublicKey(const PublicKey &from)
Copy constructor.
QCA::PrivateKey::canDecrypt
bool canDecrypt() const
Test if this key can be used for decryption.
QCA::KeyGenerator::createDSA
PrivateKey createDSA(const DLGroup &domain, const QString &provider=QString())
Generate a DSA key.
QCA::PublicKey::canVerify
bool canVerify() const
Test if the key can be used for verifying signatures.
QCA::IETF_6144
@ IETF_6144
6144-bit MODP Group ("group 17") from RFC3526 Section 6.
Definition: qca_publickey.h:145
QCA::PublicKey::validSignature
bool validSignature(const QByteArray &sig)
QCA::SecureArray
Secure array of bytes.
Definition: qca_tools.h:317
QCA::DefaultFormat
@ DefaultFormat
For DSA, this is the same as IEEE_1363.
Definition: qca_publickey.h:94
QCA::PrivateKey::fromPEM
static PrivateKey fromPEM(const QString &s, const SecureArray &passphrase=SecureArray(), ConvertResult *result=nullptr, const QString &provider=QString())
Import the key from Privacy Enhanced Mail (PEM) format.
QCA::ErrorDecode
@ ErrorDecode
General failure in the decode stage.
Definition: qca_publickey.h:121
QCA::DHPublicKey::DHPublicKey
DHPublicKey(const DLGroup &domain, const BigInteger &y, const QString &provider=QString())
Create a Diffie-Hellman public key.
QCA::KeyGenerator::createDLGroup
DLGroup createDLGroup(QCA::DLGroupSet set, const QString &provider=QString())
Create a new discrete logarithm group.
QCA::KeyGenerator::setBlockingEnabled
void setBlockingEnabled(bool b)
Set whether the key generator is in blocking mode, nor not.
QCA::RSAPrivateKey::d
BigInteger d() const
The inverse of the exponent, module (p-1)(q-1)
QCA::DHPrivateKey::DHPrivateKey
DHPrivateKey()
Create an empty Diffie-Hellman private key.
QCA::PKey::canKeyAgree
bool canKeyAgree() const
Test if the key can be used for key agreement.
QCA::DHPrivateKey::domain
DLGroup domain() const
The discrete logarithm group that is being used.
QCA::BigInteger
Arbitrary precision integer.
Definition: qca_tools.h:571
QCA::IETF_4096
@ IETF_4096
4096-bit MODP Group ("group 16") from RFC3526 Section 5.
Definition: qca_publickey.h:144
QCA::DLGroup::g
BigInteger g() const
Provide the g component of the group.
QCA::PBES2_AES256_SHA1
@ PBES2_AES256_SHA1
PKCS#5 v2.0 AES-256/CBC,SHA1.
Definition: qca_publickey.h:109
QCA::RSAPrivateKey::q
BigInteger q() const
The second of the two random primes used to generate the private key.
QCA::DSAPublicKey
Digital Signature Algorithm Public Key.
Definition: qca_publickey.h:1395
QCA::PKey::DSA
@ DSA
DSA key.
Definition: qca_publickey.h:259
QCA::PKey::Type
Type
Types of public key cryptography keys supported by QCA.
Definition: qca_publickey.h:257
QCA::DSA_1024
@ DSA_1024
1024 bit group, for compatibility with JCE
Definition: qca_publickey.h:138
QCA::PublicKey::toRSA
RSAPublicKey toRSA() const
Convenience method to convert this key to an RSAPublicKey.
QCA::RSAPrivateKey::p
BigInteger p() const
One of the two random primes used to generate the private key.
QCA::EMSA3_SHA384
@ EMSA3_SHA384
SHA384, with EMSA3 (ie PKCS#1 Version 1.5) encoding.
Definition: qca_publickey.h:85
QCA::RSAPublicKey::RSAPublicKey
RSAPublicKey(const RSAPrivateKey &k)
Extract the public key components from an RSA private key.
QCA::IETF_768
@ IETF_768
Group 1 from RFC 2412, Section E.1.
Definition: qca_publickey.h:139
QCA::EMSA3_SHA256
@ EMSA3_SHA256
SHA256, with EMSA3 (ie PKCS#1 Version 1.5) encoding.
Definition: qca_publickey.h:84
QCA::PublicKey::encrypt
SecureArray encrypt(const SecureArray &a, EncryptionAlgorithm alg)
Encrypt a message using a specified algorithm.
QCA::RSAPrivateKey::RSAPrivateKey
RSAPrivateKey()
Generate an empty RSA private key.
QCA::PrivateKey::PrivateKey
PrivateKey(const QString &type, const QString &provider)
Create a new private key.
QCA::PrivateKey::canEncrypt
bool canEncrypt() const
Test if this key can be used for encryption.
QCA::ConvertResult
ConvertResult
Return value from a format conversion.
Definition: qca_publickey.h:119
QCA::PublicKey::operator=
PublicKey & operator=(const PublicKey &from)
Assignment operator.
QCA::PublicKey::update
void update(const MemoryRegion &a)
Update the signature verification process with more data.
QCA::DSAPublicKey::DSAPublicKey
DSAPublicKey()
Create an empty DSA public key.
QCA::PublicKey::fromPEMFile
static PublicKey fromPEMFile(const QString &fileName, ConvertResult *result=nullptr, const QString &provider=QString())
QCA::RSAPrivateKey::n
BigInteger n() const
The public key value.
QCA::PKey::operator==
bool operator==(const PKey &a) const
test if two keys are equal
QCA::DLGroup::DLGroup
DLGroup(const BigInteger &p, const BigInteger &g)
Construct a discrete logarithm group from raw parameters.
QCA::KeyGenerator
Class for generating asymmetric key pairs.
Definition: qca_publickey.h:1138
QCA::PBEAlgorithm
PBEAlgorithm
Password-based encryption.
Definition: qca_publickey.h:103
QCA::PKey::isPrivate
bool isPrivate() const
Test if the key is a private key.
QCA::PublicKey::toDSA
DSAPublicKey toDSA() const
Convenience method to convert this key to a DSAPublicKey.
qca_core.h
Header file for core QCA infrastructure.
QCA::PublicKey::PublicKey
PublicKey(const QString &type, const QString &provider)
Create a new key of a specified type.
QCA::SignatureUnknown
@ SignatureUnknown
Unknown signing algorithm.
Definition: qca_publickey.h:75
QCA::DSAPublicKey::DSAPublicKey
DSAPublicKey(const DSAPrivateKey &k)
Create a DSA public key from a specified private key.
QCA::EME_NO_PADDING
@ EME_NO_PADDING
Raw RSA encryption.
Definition: qca_publickey.h:59
QCA::PublicKey::canDecrypt
bool canDecrypt() const
Test if this key can be used for decryption.
QCA::RSAPrivateKey
RSA Private Key.
Definition: qca_publickey.h:1327
QCA::PKey::isRSA
bool isRSA() const
Test if the key is an RSA key.
QCA::MemoryRegion
Array of bytes that may be optionally secured.
Definition: qca_tools.h:91
QCA::EME_PKCS1v15
@ EME_PKCS1v15
Block type 2 (PKCS#1, Version 1.5)
Definition: qca_publickey.h:56
QCA::IETF_3072
@ IETF_3072
3072-bit MODP Group ("group 15") from RFC3526 Section 4.
Definition: qca_publickey.h:143
QCA::EMSA3_SHA512
@ EMSA3_SHA512
SHA512, with EMSA3 (ie PKCS#1 Version 1.5) encoding.
Definition: qca_publickey.h:86
QCA::DSAPrivateKey::DSAPrivateKey
DSAPrivateKey()
Create an empty DSA private key.
QCA::DHPrivateKey::x
BigInteger x() const
The private random value associated with this key.
QCA::IETF_2048
@ IETF_2048
2048-bit MODP Group ("group 14") from RFC3526 Section 3.
Definition: qca_publickey.h:142
QCA::DSAPrivateKey
Digital Signature Algorithm Private Key.
Definition: qca_publickey.h:1439
QCA::DHPublicKey
Diffie-Hellman Public Key.
Definition: qca_publickey.h:1482
QCA::DHPrivateKey
Diffie-Hellman Private Key.
Definition: qca_publickey.h:1526
QCA::DSAPrivateKey::DSAPrivateKey
DSAPrivateKey(const DLGroup &domain, const BigInteger &y, const BigInteger &x, const QString &provider=QString())
Create a DSA public key.
QCA::DHPublicKey::DHPublicKey
DHPublicKey()
Create an empty Diffie-Hellman public key.
QCA::PKey::supportedTypes
static QList< Type > supportedTypes(const QString &provider=QString())
QCA::DERSequence
@ DERSequence
Signature wrapped in DER formatting (OpenSSL/Java)
Definition: qca_publickey.h:96
QCA::PKey::isDH
bool isDH() const
Test if the key is a Diffie Hellman key.
QCA::PublicKey
Generic public key.
Definition: qca_publickey.h:529
QCA::ConvertGood
@ ConvertGood
Conversion succeeded, results should be valid.
Definition: qca_publickey.h:120
QCA::PKey::supportedIOTypes
static QList< Type > supportedIOTypes(const QString &provider=QString())
QCA::PublicKey::startVerify
void startVerify(SignatureAlgorithm alg, SignatureFormat format=DefaultFormat)
Initialise the signature verification process.
QCA::PKey::PKey
PKey()
Standard constructor.
QCA::EMSA3_SHA1
@ EMSA3_SHA1
SHA1, with EMSA3 (ie PKCS#1 Version 1.5) encoding.
Definition: qca_publickey.h:77
QCA::PrivateKey::operator=
PrivateKey & operator=(const PrivateKey &from)
Assignment operator.
QCA::PrivateKey::toDER
SecureArray toDER(const SecureArray &passphrase=SecureArray(), PBEAlgorithm pbe=PBEDefault) const
Export the key in Distinguished Encoding Rules (DER) format.
QCA::PrivateKey::toDH
DHPrivateKey toDH() const
Interpret / convert the key to a Diffie-Hellman key.
QCA::DSA_768
@ DSA_768
768 bit group, for compatibility with JCE
Definition: qca_publickey.h:137
QCA::PKey
General superclass for public (PublicKey) and private (PrivateKey) keys used with asymmetric encrypti...
Definition: qca_publickey.h:251
QCA::ErrorPassphrase
@ ErrorPassphrase
Failure because of incorrect passphrase.
Definition: qca_publickey.h:122
QCA::PrivateKey::PrivateKey
PrivateKey(const QString &fileName, const SecureArray &passphrase=SecureArray())
Import a private key from a PEM representation in a file.
QCA::DHPrivateKey::y
BigInteger y() const
The public random value associated with this key.
QCA::DSAPublicKey::y
BigInteger y() const
The public random value associated with this key.
QCA::DSAPrivateKey::x
BigInteger x() const
the private random value
QCA::PublicKey::PublicKey
PublicKey(const QString &fileName)
Import a public key from a PEM representation in a file.
QCA::emsa3Encode
QCA_EXPORT QByteArray emsa3Encode(const QString &hashName, const QByteArray &digest, int size=-1)
Encode a hash result in EMSA3 (PKCS#1) format.
QCA::RSAPublicKey::e
BigInteger e() const
The public key exponent.
QCA::PKey::PKey
PKey(const QString &type, const QString &provider)
Create a key of the specified type.
QCA::RSAPrivateKey::RSAPrivateKey
RSAPrivateKey(const BigInteger &n, const BigInteger &e, const BigInteger &p, const BigInteger &q, const BigInteger &d, const QString &provider=QString())
Generate an RSA private key from specified parameters.
QCA::DLGroup::q
BigInteger q() const
Provide the q component of the group.
QCA::IEEE_1363
@ IEEE_1363
40-byte format from IEEE 1363 (Botan/.NET)
Definition: qca_publickey.h:95
QCA::PKey::type
Type type() const
Report the Type of key (eg RSA, DSA or Diffie Hellman)
QCA::PBES2_AES128_SHA1
@ PBES2_AES128_SHA1
PKCS#5 v2.0 AES-128/CBC,SHA1.
Definition: qca_publickey.h:107
QCA::EME_PKCS1_OAEP
@ EME_PKCS1_OAEP
Optimal asymmetric encryption padding (PKCS#1, Version 2.0)
Definition: qca_publickey.h:57
QCA::DLGroupSet
DLGroupSet
Well known discrete logarithm group sets.
Definition: qca_publickey.h:135
QCA::PrivateKey::deriveKey
SymmetricKey deriveKey(const PublicKey &theirs)
Derive a shared secret key from a public key.
QCA::PKey::isDSA
bool isDSA() const
Test if the key is a DSA key.
QCA::RSAPrivateKey::e
BigInteger e() const
The public key exponent.
QCA::PrivateKey::update
void update(const MemoryRegion &a)
Update the signature process.
QCA::RSAPublicKey::n
BigInteger n() const
The public key value.
QCA::PublicKey::toPEM
QString toPEM() const
Export the key in Privacy Enhanced Mail (PEM) format.