4
0
mirror of https://github.com/QuasarApp/qca.git synced 2025-05-14 03:29:32 +00:00

Minor API documentation updates

svn path=/trunk/kdesupport/qca/; revision=503440
This commit is contained in:
Brad Hards 2006-01-29 06:44:19 +00:00
parent 5af77cc0ce
commit 0421e0c4b2
3 changed files with 11 additions and 6 deletions

@ -1,7 +1,7 @@
/*
* qca.h - Qt Cryptographic Architecture
* Copyright (C) 2003-2005 Justin Karneges <justin@affinix.com>
* Copyright (C) 2004,2005 Brad Hards <bradh@frogmouth.net>
* Copyright (C) 2004-2006 Brad Hards <bradh@frogmouth.net>
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
@ -36,7 +36,7 @@
\mainpage Qt Cryptographic Architecture
Taking a hint from the similarly-named
<a href="http://java.sun.com/j2se/1.4/docs/guide/security/CryptoSpec.html">Java
<a href="http://java.sun.com/j2se/1.5.0/docs/guide/security/CryptoSpec.html">Java
Cryptography Architecture</a>, %QCA aims to provide a
straightforward and cross-platform cryptographic API, using Qt
datatypes and conventions. %QCA separates the API from the

@ -164,25 +164,31 @@ namespace QCA
Obtain a specific KeyStore
\param id the identification for the key store
\param parent the parent object for this keystore
*/
KeyStore(const QString &id, QObject *parent = 0);
~KeyStore();
/**
Check if this KeyStore is valid
\return true if the KeyStore is valid
*/
bool isValid() const;
/**
The keystore Type
The KeyStore Type
*/
Type type() const;
/**
The name associated with the keystore
The name associated with the KeyStore
*/
QString name() const;
/**
The ID associated with the keystore
The ID associated with the KeyStore
*/
QString id() const;

@ -372,7 +372,6 @@ namespace QCA
\param service the name of the service
\param host the server side host name
\param realm the realm to use
\param mechlist the list of available mechanisms
\param ServerSendMode which mode to use on the server side
*/
void startServer(const QString &service, const QString &host, const QString &realm, enum ServerSendMode = DisableServerSendLast);