summaryrefslogtreecommitdiff
path: root/cypher.h
diff options
context:
space:
mode:
authorErwin Nindl <nine@wirdorange.org>2007-06-22 15:27:40 +0000
committerErwin Nindl <nine@wirdorange.org>2007-06-22 15:27:40 +0000
commit8ed8d6c21dffcb4202fdd592138f15cbc80355ea (patch)
tree0092058aba6de10350f5c33835084c964e5832f4 /cypher.h
parentadded libsrtp to svn (diff)
added srtp/crypto/*.o to makefile
Diffstat (limited to 'cypher.h')
-rw-r--r--cypher.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/cypher.h b/cypher.h
index a225ebd..8baa9cb 100644
--- a/cypher.h
+++ b/cypher.h
@@ -33,7 +33,6 @@
#include "buffer.h"
-// this is a svn test comment
class Cypher
{
@@ -54,4 +53,10 @@ protected:
Buffer getBitStream(u_int32_t length);
};
+class AesIcmCypher : public Cypher
+{
+protected:
+ Buffer getBitStream(u_int32_t length);
+};
+
#endif