From cecf719fcd8cde0724567d4b38360daae52b4597 Mon Sep 17 00:00:00 2001 From: Jeffrey Walton Date: Tue, 13 Dec 2016 16:20:41 -0500 Subject: Add German digital signature algorithm (ECGDSA) (Issue 113) Also see ISO/IEC 15946 and http://www.teletrust.de/fileadmin/files/oid/ecgdsa_final.pdf --- algparam.h | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'algparam.h') diff --git a/algparam.h b/algparam.h index 7db6f104..33be4b0c 100644 --- a/algparam.h +++ b/algparam.h @@ -221,9 +221,8 @@ private: }; template -GetValueHelperClass GetValueHelper(const T *pObject, const char *name, const std::type_info &valueType, void *pValue, const NameValuePairs *searchFirst=NULL, BASE *dummy=NULL) +GetValueHelperClass GetValueHelper(const T *pObject, const char *name, const std::type_info &valueType, void *pValue, const NameValuePairs *searchFirst=NULL) { - CRYPTOPP_UNUSED(dummy); return GetValueHelperClass(pObject, name, valueType, pValue, searchFirst); } @@ -284,9 +283,8 @@ private: }; template -AssignFromHelperClass AssignFromHelper(T *pObject, const NameValuePairs &source, BASE *dummy=NULL) +AssignFromHelperClass AssignFromHelper(T *pObject, const NameValuePairs &source) { - CRYPTOPP_UNUSED(dummy); return AssignFromHelperClass(pObject, source); } -- cgit v1.2.1