diff options
author | lloyd <[email protected]> | 2010-06-15 21:59:23 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2010-06-15 21:59:23 +0000 |
commit | 416695f7363c4e93eaeaea23427a1fed3ad73cab (patch) | |
tree | ff1482f22f176733305583ad56855dae997d0d6d /src/cert/cvc/signed_obj.h | |
parent | 6565cf0df1ed88a818aecf6de7635531e05c0871 (diff) |
Fix a few hundred Doxygen warnings
Diffstat (limited to 'src/cert/cvc/signed_obj.h')
-rw-r--r-- | src/cert/cvc/signed_obj.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/cert/cvc/signed_obj.h b/src/cert/cvc/signed_obj.h index 0e7dd6bdb..c0ae2cfc5 100644 --- a/src/cert/cvc/signed_obj.h +++ b/src/cert/cvc/signed_obj.h @@ -50,6 +50,7 @@ class BOTAN_DLL EAC_Signed_Object /** * Check the signature of this object. * @param key the public key associated with this signed object + * @param sig the signature we are checking * @return true if the signature was created by the private key * associated with this public key */ @@ -59,9 +60,10 @@ class BOTAN_DLL EAC_Signed_Object /** * Write this object DER encoded into a specified pipe. * @param pipe the pipe to write the encoded object to - * @param enc the encoding type to use + * @param encoding the encoding type to use */ - virtual void encode(Pipe&, X509_Encoding = PEM) const = 0; + virtual void encode(Pipe& pipe, + X509_Encoding encoding = PEM) const = 0; /** * BER encode this object. |