this repo has no description
1#ifndef __MSGTRACER_KEYS_H__
2#define __MSGTRACER_KEYS_H__
3
4// from:
5// `Security/OSX/libsecurity_ssl/Security/sslTransport.c`
6// `Security/securityd/src/token.cpp`
7// `IOKitUser/hidsystem.subproj/IOHIDLib.c`
8// plus a little bit of common sense ;)
9//
10// once again, i am amazed at Apple's failure to properly hide things
11#define kMsgTracerKeySignature "com.apple.message.signature"
12#define kMsgTracerKeySummarize "com.apple.message.summarize"
13#define kMsgTracerKeySignature2 "com.apple.message.signature2"
14
15// these are good guesses
16#define kMsgTracerKeyValue "com.apple.message.value"
17#define kMsgTracerKeyValue2 "com.apple.message.value2"
18
19#endif // __MSGTRACER_KEYS_H__