• Skip to content
  • Skip to link menu
KDE 4.2 API Reference
  • KDE API Reference
  • API Reference
  • Sitemap
  • Contact Us
 

qca

QCA::KeyStore

QCA::KeyStore Class Reference
[QCA user API]

#include <QtCrypto>

Inheritance diagram for QCA::KeyStore:

Inheritance graph
[legend]

List of all members.


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:
System  objects such as root certificates
User  objects such as Apple Keychain, KDE Wallet
Application  for caching accepted self-signed certificates
SmartCard  for smartcards
PGPKeyring  for a PGP keyring

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

test if the KeyStore holds PGPPublicKey objects

Definition at line 1233 of file qca_keystore.cpp.

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

The ID associated with the KeyStore.

Definition at line 1179 of file qca_keystore.cpp.

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

The name associated with the KeyStore.

Definition at line 1174 of file qca_keystore.cpp.

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]

Emitted when the KeyStore is changed.

This occurs if entries are added, removed, or changed in this KeyStore, including changes in entry availability.

QString KeyStore::writeEntry ( const PGPKey &  key  ) 

This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.

Parameters:
key the PGPKey to add to the KeyStore
Returns:
a ref to the key in the keyring

Definition at line 1289 of file qca_keystore.cpp.

QString KeyStore::writeEntry ( const CRL &  crl  ) 

This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.

Parameters:
crl the CRL to add to the KeyStore

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.

QString KeyStore::writeEntry ( const KeyBundle &  kb  ) 

Add a entry to the KeyStore.

Returns the entryId of the written entry or an empty string on failure.

Parameters:
kb the KeyBundle to add to the KeyStore
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:
  • qca_keystore.h
  • qca_keystore.cpp

qca

Skip menu "qca"
  • Main Page
  • Modules
  • Namespace List
  • Class Hierarchy
  • Alphabetical List
  • Class List
  • File List
  • Namespace Members
  • Class Members
  • Related Pages

API Reference

Skip menu "API Reference"
  • akonadi
  • Decibel
  • eigen
  • Eigen2
  • kdewin32
  • Phonon
  •     Backend
  • qca
  • qimageblitz
  • soprano
  • strigi
  •     searchclient
  •     streamanalyzer
  •     streams
Generated for API Reference by doxygen 1.5.4
This website is maintained by Adriaan de Groot and Allen Winter.
KDE® and the K Desktop Environment® logo are registered trademarks of KDE e.V. | Legal