1//
2//  SecOnOSX.h
3//  messsageProtection
4//
5//  Created by Keith on 10/21/11.
6//  Copyright (c) 2011 __MyCompanyName__. All rights reserved.
7//
8
9#ifndef _SECONOSX_H_
10#define _SECONOSX_H_
11
12#include <TargetConditionals.h>
13
14#if (TARGET_OS_MAC && !(TARGET_OS_EMBEDDED || TARGET_OS_IPHONE))
15
16#include <Security/SecKeyPriv.h>
17
18#define SecKeyCreateFromPublicData _SecKeyCreateFromPublicData
19
20#if 0
21SecKeyRef SecKeyCreateFromPublicData(CFAllocatorRef allocator, CFIndex algorithmID, CFDataRef serialized);
22#endif
23
24#endif  /* TARGET_OS_MAC */
25
26#endif /* _SECONOSX_H_ */
27
28
29