diff options
author | Christian Pointner <equinox@anytun.org> | 2008-02-20 00:25:29 +0000 |
---|---|---|
committer | Christian Pointner <equinox@anytun.org> | 2008-02-20 00:25:29 +0000 |
commit | 7b75dd9d4afd6030fe1837ea7d2d3fcd225ae785 (patch) | |
tree | eb9375dcfd63e78965d844674577491c1dd1a5e9 /encryptedPacket.cpp | |
parent | further cleanups (diff) |
further cleanups
cipher could work now
Diffstat (limited to 'encryptedPacket.cpp')
-rw-r--r-- | encryptedPacket.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/encryptedPacket.cpp b/encryptedPacket.cpp index eb459e4..0731d24 100644 --- a/encryptedPacket.cpp +++ b/encryptedPacket.cpp @@ -170,7 +170,7 @@ AuthTag EncryptedPacket::getAuthTag() const throw std::runtime_error("auth tag not enabled"); AuthTag at(AUTHTAG_SIZE); - std::memcpy(at, auth_tag_, AUTHTAG_SIZE ); + std::memcpy(at, auth_tag_, AUTHTAG_SIZE ); return at; } |