diff options
author | Jack Lloyd <[email protected]> | 2017-07-31 10:44:03 -0400 |
---|---|---|
committer | Jack Lloyd <[email protected]> | 2017-07-31 10:44:03 -0400 |
commit | bf1efdb909118a309bffbab8f0cd513842d59092 (patch) | |
tree | 19506d889d72010c3562e0f542a510687de4f3fd /src/lib/prov | |
parent | 45c603c8e5ec43cf4af36157777dd47e5d416f7f (diff) | |
parent | 5f071d592ceb54e026de29c96d2ee6f5efc50d22 (diff) |
Merge GH #1132 Fix Doxygen errors and add -Wdocumentation flag to clang maintainer build
Diffstat (limited to 'src/lib/prov')
-rw-r--r-- | src/lib/prov/pkcs11/p11.cpp | 2 | ||||
-rw-r--r-- | src/lib/prov/pkcs11/p11_rsa.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/prov/pkcs11/p11.cpp b/src/lib/prov/pkcs11/p11.cpp index 8a460b66f..ab4784112 100644 --- a/src/lib/prov/pkcs11/p11.cpp +++ b/src/lib/prov/pkcs11/p11.cpp @@ -20,7 +20,7 @@ ReturnValue* ThrowException = reinterpret_cast< ReturnValue* >(-1); namespace { /// @param function_result Return value of the PKCS11 module function -/// @param returnValue if (`ThrowException`) is passed the function throws an exception, otherwise if a non-NULL pointer is passed: +/// @param return_value if (`ThrowException`) is passed the function throws an exception, otherwise if a non-NULL pointer is passed: /// return_value receives the return value of the PKCS#11 function and no exception is thrown. /// @return true if function call was successful, false otherwise bool handle_return_value(const CK_RV function_result, ReturnValue* return_value) diff --git a/src/lib/prov/pkcs11/p11_rsa.h b/src/lib/prov/pkcs11/p11_rsa.h index 1a6fd4890..f3ddd970b 100644 --- a/src/lib/prov/pkcs11/p11_rsa.h +++ b/src/lib/prov/pkcs11/p11_rsa.h @@ -190,7 +190,7 @@ class BOTAN_DLL PKCS11_RSA_PrivateKey final : public Private_Key, /** * Generates a PKCS#11 RSA private key - * @param session + * @param session the session to use * @param bits length in bits of modulus n * @param priv_key_props the properties of the RSA private key * @note no persistent public key object will be created |