summaryrefslogtreecommitdiff
path: root/cypher.h
diff options
context:
space:
mode:
authorErwin Nindl <nine@wirdorange.org>2007-08-15 13:19:31 +0000
committerErwin Nindl <nine@wirdorange.org>2007-08-15 13:19:31 +0000
commit3543f2a6c9034db63af9a0ec8681bc03d5532d48 (patch)
tree0c711aa3ab2f327fac9bd7ed6e6044e1cfbc5b7c /cypher.h
parentadded diagramm (diff)
* set cypher to aes_icm
* changed cypher
Diffstat (limited to 'cypher.h')
-rw-r--r--cypher.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/cypher.h b/cypher.h
index 48e2ef9..30147a1 100644
--- a/cypher.h
+++ b/cypher.h
@@ -57,12 +57,12 @@ protected:
class AesIcmCypher : public Cypher
{
public:
+// AesIcmCypher() {};
+// ~AesIcmCypher() {};
void cypher(Buffer& buf, seq_nr_t seq_nr, sender_id_t sender_id);
protected:
- Buffer getBitStream(u_int32_t length, seq_nr_t seq_nr, sender_id_t sender_id);
-
-private:
+ Buffer getBitStream(u_int32_t length, seq_nr_t seq_nr, sender_id_t sender_id) { return Buffer(); };
};