qca
QCA::KeyStore Class Reference
[QCA user API]
#include <QtCrypto>

Detailed Description
General purpose key storage object.Examples of use of this are:
- systemstore: System TrustedCertificates
- accepted self-signed: Application TrustedCertificates
- apple keychain: User Identities
- smartcard: SmartCard Identities
- gnupg: PGPKeyring Identities,PGPPublicKeys
- Note:
- there can be multiple KeyStore objects referring to the same id
- when a KeyStore is constructed, it refers to a given id (deviceId) and internal contextId. if the context goes away, the KeyStore becomes invalid (isValid() == false), and unavailable() is emitted. even if the device later reappears, the KeyStore remains invalid. a new KeyStore will have to be created to use the device again.
Definition at line 416 of file qca_keystore.h.
Public Types | |
| enum | Type { System, User, Application, SmartCard, PGPKeyring } |
Signals | |
| void | entryRemoved (bool success) |
| void | entryWritten (const QString &entryId) |
| void | unavailable () |
| void | updated () |
Public Member Functions | |
| QList< KeyStoreEntry > | entryList () const |
| bool | holdsIdentities () const |
| bool | holdsPGPPublicKeys () const |
| bool | holdsTrustedCertificates () const |
| QString | id () const |
| bool | isReadOnly () const |
| bool | isValid () const |
| KeyStore (const QString &id, KeyStoreManager *keyStoreManager) | |
| QString | name () const |
| bool | removeEntry (const QString &id) |
| void | startAsynchronousMode () |
| Type | type () const |
| QString | writeEntry (const PGPKey &key) |
| QString | writeEntry (const CRL &crl) |
| QString | writeEntry (const Certificate &cert) |
| QString | writeEntry (const KeyBundle &kb) |
| ~KeyStore () | |
Member Enumeration Documentation
| enum QCA::KeyStore::Type |
The type of keystore.
- Enumerator:
Definition at line 423 of file qca_keystore.h.
Constructor & Destructor Documentation
| KeyStore::KeyStore | ( | const QString & | id, | |
| KeyStoreManager * | keyStoreManager | |||
| ) |
Obtain a specific KeyStore.
- Parameters:
-
id the identification for the key store keyStoreManager the parent manager for this keystore
Definition at line 1140 of file qca_keystore.cpp.
| KeyStore::~KeyStore | ( | ) |
Definition at line 1157 of file qca_keystore.cpp.
Member Function Documentation
| QList< KeyStoreEntry > KeyStore::entryList | ( | ) | const |
A list of the KeyStoreEntry objects in this store.
- Note:
- This synchronous operation may require event handling, and so it must not be called from the same thread as an EventHandler (this is not a concern if asynchronous mode is enabled).
- See also:
- startAsynchronousMode
Definition at line 1201 of file qca_keystore.cpp.
| void QCA::KeyStore::entryRemoved | ( | bool | success | ) | [signal] |
Emitted when an entry has been removed, in asynchronous mode.
- Parameters:
-
success indicates if the removal succeeded (true) or not (false).
| void QCA::KeyStore::entryWritten | ( | const QString & | entryId | ) | [signal] |
Emitted when an entry has been written, in asynchronous mode.
- Parameters:
-
entryId is the newly written entry id on success, or an empty string if the write failed.
| bool KeyStore::holdsIdentities | ( | ) | const |
test if the KeyStore holds identities (eg KeyBundle or PGPSecretKey)
Definition at line 1222 of file qca_keystore.cpp.
| bool KeyStore::holdsPGPPublicKeys | ( | ) | const |
| bool KeyStore::holdsTrustedCertificates | ( | ) | const |
test if the KeyStore holds trusted certificates (and CRLs)
Definition at line 1211 of file qca_keystore.cpp.
| QString KeyStore::id | ( | ) | const |
| bool KeyStore::isReadOnly | ( | ) | const |
Test if the KeyStore is writeable or not.
- Returns:
- true if the KeyStore is read-only
Definition at line 1184 of file qca_keystore.cpp.
| bool KeyStore::isValid | ( | ) | const |
Check if this KeyStore is valid.
- Returns:
- true if the KeyStore is valid
Definition at line 1164 of file qca_keystore.cpp.
| QString KeyStore::name | ( | ) | const |
| bool KeyStore::removeEntry | ( | const QString & | id | ) |
Delete the a specified KeyStoreEntry from this KeyStore.
- Parameters:
-
id the ID for the entry to be deleted
- Note:
- This synchronous operation may require event handling, and so it must not be called from the same thread as an EventHandler (this is not a concern if asynchronous mode is enabled).
- See also:
- startAsynchronousMode
Definition at line 1304 of file qca_keystore.cpp.
| void KeyStore::startAsynchronousMode | ( | ) |
Turns on asynchronous mode for this KeyStore instance.
Normally, entryList() and writeEntry() are blocking calls. However, if startAsynchronousMode() is called, then these functions will return immediately. entryList() will return with the latest known entries, or an empty list if none are known yet (in this mode, updated() will be emitted once the initial entries are known, even if the store has not actually been altered). writeEntry() will always return an empty string, and the entryWritten() signal indicates the result of a write.
Definition at line 1189 of file qca_keystore.cpp.
| KeyStore::Type KeyStore::type | ( | ) | const |
The KeyStore Type.
Reimplemented from QCA::Algorithm.
Definition at line 1169 of file qca_keystore.cpp.
| void QCA::KeyStore::unavailable | ( | ) | [signal] |
Emitted when the KeyStore becomes unavailable.
| void QCA::KeyStore::updated | ( | ) | [signal] |
This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.
- Returns:
- a ref to the key in the keyring
Definition at line 1289 of file qca_keystore.cpp.
This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.
Definition at line 1274 of file qca_keystore.cpp.
| QString KeyStore::writeEntry | ( | const Certificate & | cert | ) |
This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.
- Parameters:
-
cert the Certificate to add to the KeyStore
Definition at line 1259 of file qca_keystore.cpp.
Add a entry to the KeyStore.
Returns the entryId of the written entry or an empty string on failure.
- Note:
- This synchronous operation may require event handling, and so it must not be called from the same thread as an EventHandler (this is not a concern if asynchronous mode is enabled).
- See also:
- startAsynchronousMode
Definition at line 1244 of file qca_keystore.cpp.
The documentation for this class was generated from the following files:
KDE 4.2 API Reference