diff options
author | Tobias Brunner <tobias@strongswan.org> | 2011-07-21 18:32:28 +0200 |
---|---|---|
committer | Tobias Brunner <tobias@strongswan.org> | 2011-07-21 18:38:43 +0200 |
commit | cbf5c2c61c4441af5f73c99dc8ae9ba2e99fd0b4 (patch) | |
tree | 27a84002c8ae214fe36371cc5401f2c43a1ac960 /src/libstrongswan/credentials/keys/private_key.h | |
parent | 92032fd4d620bf7f92edb6fd13e6aef47962c3fc (diff) | |
download | strongswan-cbf5c2c61c4441af5f73c99dc8ae9ba2e99fd0b4.tar.bz2 strongswan-cbf5c2c61c4441af5f73c99dc8ae9ba2e99fd0b4.tar.xz |
Readded docs for some arguments to global functions.
Those were overzealously removed in 28623fc5389829858c78c759a214aa5c64ea26c6.
Diffstat (limited to 'src/libstrongswan/credentials/keys/private_key.h')
-rw-r--r-- | src/libstrongswan/credentials/keys/private_key.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/libstrongswan/credentials/keys/private_key.h b/src/libstrongswan/credentials/keys/private_key.h index c45763aaf..b9f7dad55 100644 --- a/src/libstrongswan/credentials/keys/private_key.h +++ b/src/libstrongswan/credentials/keys/private_key.h @@ -133,10 +133,11 @@ struct private_key_t { /** * Generic private key equals() implementation, usable by implementors. * + * @param private private key to check * @param other key to compare * @return TRUE if this is equal to other */ -bool private_key_equals(private_key_t *this, private_key_t *other); +bool private_key_equals(private_key_t *private, private_key_t *other); /** * Generic private key belongs_to() implementation, usable by implementors. @@ -150,9 +151,10 @@ bool private_key_belongs_to(private_key_t *private, public_key_t *public); /** * Generic private key has_fingerprint() implementation, usable by implementors. * + * @param private private key to check * @param fingerprint fingerprint to check * @return TRUE if key has given fingerprint */ -bool private_key_has_fingerprint(private_key_t *this, chunk_t fingerprint); +bool private_key_has_fingerprint(private_key_t *private, chunk_t fingerprint); #endif /** PRIVATE_KEY_H_ @}*/ |