NS-3 based Named Data Networking (NDN) simulator
ndnSIM 2.3: 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_DETAIL_OPENSSL_HPP
23 #define NDN_SECURITY_DETAIL_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 #endif // __APPLE__
34 
35 #include <openssl/rand.h>
36 #include <openssl/bio.h>
37 #include <openssl/evp.h>
38 #include <openssl/rsa.h>
39 #include <openssl/ec.h>
40 #include <openssl/pem.h>
41 #include <openssl/hmac.h>
42 #include <openssl/x509.h>
43 #include <openssl/err.h>
44 
45 #endif // NDN_SECURITY_DETAIL_OPENSSL_HPP