diff options
author | Daniel Seither <[email protected]> | 2015-07-30 16:05:55 +0200 |
---|---|---|
committer | Daniel Seither <[email protected]> | 2015-07-30 16:05:55 +0200 |
commit | 656ff74c7d951712cba7d032c2d0a4d5119aa952 (patch) | |
tree | 34bd8ae0e561fc64a4b34e474ea1ce6f0d3627f4 /src/lib/mac | |
parent | 46eaa49b1b8b3449eacfee61cb07b30c07415401 (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.h | 6 |
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; }; |