diff options
author | lloyd <[email protected]> | 2008-10-13 03:15:59 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2008-10-13 03:15:59 +0000 |
commit | f59cacc01b042210865a8cb9b766c646dce23629 (patch) | |
tree | 49cb9d9a172405c674dc36a0a066621c03f1db9c /src/pubkey/pk_lookup | |
parent | 0dcfb6a06912e9e1498313c66dd6cb5fb732b3d2 (diff) |
More Doxygen comments from InSiTo
Diffstat (limited to 'src/pubkey/pk_lookup')
-rw-r--r-- | src/pubkey/pk_lookup/pk_algs.h | 14 |
1 files changed, 11 insertions, 3 deletions
diff --git a/src/pubkey/pk_lookup/pk_algs.h b/src/pubkey/pk_lookup/pk_algs.h index a8fa5f176..2bb9a546e 100644 --- a/src/pubkey/pk_lookup/pk_algs.h +++ b/src/pubkey/pk_lookup/pk_algs.h @@ -11,10 +11,18 @@ namespace Botan { -/************************************************* -* Get an PK key object * -*************************************************/ +/** +* Get an empty public key object. +* @param name the name of the desired public key algorithm +* @return the public key object +*/ BOTAN_DLL Public_Key* get_public_key(const std::string&); + +/** +* Get an empty private key object. +* @param name the name of the desired public key algorithm +* @return the private key object +*/ BOTAN_DLL Private_Key* get_private_key(const std::string&); } |