diff options
author | Christian Pointner <equinox@anytun.org> | 2007-06-17 22:25:20 +0000 |
---|---|---|
committer | Christian Pointner <equinox@anytun.org> | 2007-06-17 22:25:20 +0000 |
commit | 261c9067380c5311c98e3576540eee6015be3297 (patch) | |
tree | f384eb8edbcc4d35793071090839453bcb4418a4 /authAlgo.cpp | |
parent | added cypher and authalgo (diff) |
added [] - operator to Buffer
const Buffers are now possible
Diffstat (limited to 'authAlgo.cpp')
-rw-r--r-- | authAlgo.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/authAlgo.cpp b/authAlgo.cpp index 90fc4a2..57c9ee6 100644 --- a/authAlgo.cpp +++ b/authAlgo.cpp @@ -30,7 +30,7 @@ #include "authAlgo.h" -auth_tag_t NullAuthAlgo::calc(Buffer& buf) +auth_tag_t NullAuthAlgo::calc(const Buffer& buf) { return 0; } |