NS-3 based Named Data Networking (NDN) simulator
ndnSIM 2.0: NDN, CCN, CCNx, content centric networks
API Documentation
openssl.hpp
Go to the documentation of this file.
1 /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
22 #ifndef NDN_SECURITY_OPENSSL_HPP
23 #define NDN_SECURITY_OPENSSL_HPP
24 
25 // suppress deprecation warnings in OSX >= 10.7
26 
27 #if defined(__APPLE__)
28 
29 #ifdef __clang__
30 #pragma clang diagnostic ignored "-Wdeprecated-declarations"
31 #endif // __clang__
32 
33 #ifdef __GNUC__
34 #pragma GCC diagnostic ignored "-Wdeprecated-declarations"
35 #endif // __GNUC__
36 
37 #endif
38 
39 
40 #include <openssl/ssl.h>
41 #include <openssl/sha.h>
42 #include <openssl/rsa.h>
43 
44 
45 #endif // NDN_SECURITY_OPENSSL_HPP