summaryrefslogtreecommitdiff
path: root/encryptedPacket.h
diff options
context:
space:
mode:
authorChristian Pointner <equinox@anytun.org>2008-02-19 17:31:04 +0000
committerChristian Pointner <equinox@anytun.org>2008-02-19 17:31:04 +0000
commit3d174037c175e33b0b57c0639ab7440e9f5d6abc (patch)
tree11deb98d33858fafbc8e61ffe414f8be0cbc458e /encryptedPacket.h
parentminor changes (diff)
replaces cypher with cipher
Diffstat (limited to 'encryptedPacket.h')
-rw-r--r--encryptedPacket.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/encryptedPacket.h b/encryptedPacket.h
index 0535454..afc7d0e 100644
--- a/encryptedPacket.h
+++ b/encryptedPacket.h
@@ -34,7 +34,7 @@
#include "datatypes.h"
#include "buffer.h"
#include "authTag.h"
-class Cypher;
+class Cipher;
class EncryptedPacket : public Buffer
{
public:
@@ -137,7 +137,7 @@ private:
static const u_int32_t AUTHTAG_SIZE = 10; // 10byte
protected:
- friend class Cypher;
+ friend class Cipher;
u_int8_t * payload_;
u_int32_t payload_length_;
};