]> git.saurik.com Git - apple/security.git/blobdiff - sec/Security/SecOTRPackets.h
Security-57031.1.35.tar.gz
[apple/security.git] / sec / Security / SecOTRPackets.h
diff --git a/sec/Security/SecOTRPackets.h b/sec/Security/SecOTRPackets.h
deleted file mode 100644 (file)
index 09a81ad..0000000
+++ /dev/null
@@ -1,31 +0,0 @@
-//
-//  SecOTRPackets.h
-//  libsecurity_libSecOTR
-//
-//  Created by Mitch Adler on 2/23/11.
-//  Copyright 2011 Apple Inc. All rights reserved.
-//
-
-#include <Security/SecOTRSession.h>
-
-#include <CoreFoundation/CFData.h>
-
-#ifndef _SECOTRPACKETS_H_
-#define _SECOTRPACKETS_H_
-
-void SecOTRAppendDHMessage(SecOTRSessionRef session, CFMutableDataRef appendTo);
-void SecOTRAppendDHKeyMessage(SecOTRSessionRef session, CFMutableDataRef appendTo);
-void SecOTRAppendRevealSignatureMessage(SecOTRSessionRef session, CFMutableDataRef appendTo);
-void SecOTRAppendSignatureMessage(SecOTRSessionRef session, CFMutableDataRef appendTo);
-
-typedef enum {
-    kDHMessage = 0x02,
-    kDataMessage = 0x03,
-    kDHKeyMessage = 0x0A,
-    kRevealSignatureMessage = 0x11,
-    kSignatureMessage = 0x12,
-    
-    kInvalidMessage = 0xFF
-} OTRMessageType;
-
-#endif