aboutsummaryrefslogtreecommitdiffstats
path: root/src/lib/mac
diff options
context:
space:
mode:
authorDaniel Seither <[email protected]>2015-07-30 16:05:55 +0200
committerDaniel Seither <[email protected]>2015-07-30 16:05:55 +0200
commit656ff74c7d951712cba7d032c2d0a4d5119aa952 (patch)
tree34bd8ae0e561fc64a4b34e474ea1ce6f0d3627f4 /src/lib/mac
parent46eaa49b1b8b3449eacfee61cb07b30c07415401 (diff)
Remove duplicate definition of MessageAuthenticationCode::name()
The original definition is in the base class SymmetricAlgorithm.
Diffstat (limited to 'src/lib/mac')
-rw-r--r--src/lib/mac/mac.h6
1 files changed, 0 insertions, 6 deletions
diff --git a/src/lib/mac/mac.h b/src/lib/mac/mac.h
index 2ee971b90..8ad2d1e99 100644
--- a/src/lib/mac/mac.h
+++ b/src/lib/mac/mac.h
@@ -35,12 +35,6 @@ class BOTAN_DLL MessageAuthenticationCode : public Buffered_Computation,
*/
virtual MessageAuthenticationCode* clone() const = 0;
- /**
- * Get the name of this algorithm.
- * @return name of this algorithm
- */
- virtual std::string name() const = 0;
-
typedef SCAN_Name Spec;
};