summaryrefslogtreecommitdiff
path: root/dmac.h
diff options
context:
space:
mode:
Diffstat (limited to 'dmac.h')
-rw-r--r--dmac.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/dmac.h b/dmac.h
index 521ba44..f10d34f 100644
--- a/dmac.h
+++ b/dmac.h
@@ -40,7 +40,7 @@ class DMAC : public MessageAuthenticationCodeFinal<DMAC_Base<T> >
public:
DMAC() {}
DMAC(const byte *key, unsigned int length=DMAC_Base<T>::DEFAULT_KEYLENGTH)
- {SetKey(key, length);}
+ {this->SetKey(key, length);}
};
template <class T>