Документация
ОС Аврора 5.1.7
Класс ECPublicKey
#include <QtCrypto>
Диаграмма кооперации класса QCA::ECPublicKey:

Публичные функции
| QString | curve () const |
| ECPublicKey ()=default | |
| ECPublicKey (const ECPrivateKey &k) | |
| ECPublicKey (const QString &curve, const BigInteger &x, const BigInteger &y, const QString &provider=QString()) | |
| ECPublicKey (const QString &curve, const QString &provider=QString()) | |
| BigInteger | x () const |
| BigInteger | y () const |
Публичные функции, унаследованные от QCA::PublicKey
| bool | canDecrypt () const |
| bool | canEncrypt () const |
| bool | canVerify () const |
| bool | decrypt (const SecureArray &in, SecureArray *out, EncryptionAlgorithm alg) |
| SecureArray | encrypt (const SecureArray &a, EncryptionAlgorithm alg) |
| int | maximumEncryptSize (EncryptionAlgorithm alg) const |
| PublicKey & | operator= (const PublicKey &from) |
| PublicKey () | |
| PublicKey (const PrivateKey &k) | |
| PublicKey (const PublicKey &from) | |
| PublicKey (const QString &fileName) | |
| void | startVerify (SignatureAlgorithm alg, SignatureFormat format=DefaultFormat) |
| QByteArray | toDER () const |
| DHPublicKey | toDH () const |
| DSAPublicKey | toDSA () const |
| ECPublicKey | toEC () const |
| GOSTPublicKey | toGOST () const |
| QString | toPEM () const |
| bool | toPEMFile (const QString &fileName) const |
| RSAPublicKey | toRSA () const |
| void | update (const MemoryRegion &a) |
| bool | validSignature (const QByteArray &sig) |
| bool | verifyMessage (const MemoryRegion &a, const QByteArray &sig, SignatureAlgorithm alg, SignatureFormat format=DefaultFormat) |
Публичные функции, унаследованные от QCA::PKey
| int | bitSize () const |
| bool | canExport () const |
| bool | canKeyAgree () const |
| bool | isDH () const |
| bool | isDSA () const |
| bool | isEC () const |
| bool | isGOST () const |
| bool | isNull () const |
| bool | isPrivate () const |
| bool | isPublic () const |
| bool | isRSA () const |
| bool | operator!= (const PKey &a) const |
| PKey & | operator= (const PKey &from) |
| bool | operator== (const PKey &a) const |
| PKey () | |
| PKey (const PKey &from) | |
| PrivateKey | toPrivateKey () const |
| PublicKey | toPublicKey () const |
| Type | type () const |
Публичные функции, унаследованные от QCA::Algorithm
| Algorithm (const Algorithm &from) | |
| void | change (const QString &type, const QString &provider) |
| void | change (Provider::Context *c) |
| Provider::Context * | context () |
| const Provider::Context * | context () const |
| Algorithm & | operator= (const Algorithm &from) |
| Provider * | provider () const |
| Provider::Context * | takeContext () |
| QString | type () const |
Дополнительные унаследованные члены
Публичные типы, унаследованные от QCA::PKey
| enum | Type { RSA , DSA , DH , EC , GOST , UNKNOWN } |
Статические публичные функции, унаследованные от 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()) |
Статические публичные функции, унаследованные от QCA::PKey
| static QList<Type > | supportedIOTypes (const QString &provider=QString()) |
| static QList<Type > | supportedTypes (const QString &provider=QString()) |
Защищённые функции, унаследованные от QCA::PublicKey
| PublicKey (const QString &type, const QString &provider) |
Защищённые функции, унаследованные от 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 |
| ECPrivateKey | toECPrivateKey () const |
| ECPublicKey | toECPublicKey () const |
| GOSTPrivateKey | toGOSTPrivateKey () const |
| GOSTPublicKey | toGOSTPublicKey () const |
| RSAPrivateKey | toRSAPrivateKey () const |
| RSAPublicKey | toRSAPublicKey () const |
Защищённые функции, унаследованные от QCA::Algorithm
| Algorithm () |
| Algorithm (const QString &type, const QString &provider) |
Подробное описание
Открытый ключ эллиптической кривой.
Описание конструкторов и деструктора
ECPublicKey() [1/4]
| QCA::ECPublicKey::ECPublicKey () | default |
Создаёт пустой открытый ключ эллиптической кривой.
ECPublicKey() [2/4]
| QCA::ECPublicKey::ECPublicKey (const QString & curve, const QString & provider = QString() ) |
Создаёт открытый ключ эллиптической кривой из указанного закрытого ключа.
Параметры
| curve | Эллиптическая кривая для использования в качестве источника |
| provider | Криптопровайдер, который будет использоваться, если требуется конкретный криптопровайдер |
- Устарел:
- Будет удалён в будущих релизах. Вместо этого следует использовать ECPublicKey(const QString &, const BigInteger &, const BigInteger &, const QString &), чтобы получить открытые ключи от компонентов.
ECPublicKey() [3/4]
| QCA::ECPublicKey::ECPublicKey (const QString & curve, const BigInteger & x, const BigInteger & y, const QString & provider = QString() ) |
Создаёт открытый ключ указанной кривой из указанного закрытого ключа.
Параметры
| curve | Эллиптическая кривая для использования |
| x | Компонент X публичного ключа |
| y | Компонент Y публичного ключа |
| provider | Криптопровайдер, который будет использоваться, если требуется конкретный криптопровайдер |
ECPublicKey() [4/4]
| QCA::ECPublicKey::ECPublicKey (const ECPrivateKey & k) |
Создаёт открытый ключ эллиптической кривой из указанного закрытого ключа.
Параметры
| k | Закрытый ключ эллиптической кривой для использования в качестве источника |
Описание методов
curve()
| QString QCA::ECPublicKey::curve () const |
Тип кривой.
x()
| BigInteger QCA::ECPublicKey::x () const |
Компонент X публичного ключа.
y()
| BigInteger QCA::ECPublicKey::y () const |
Компонент Y публичного ключа.