Junxiao Shi | 482ccc5 | 2014-03-31 13:05:24 -0700 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil -*- */ |
| 2 | /** |
| 3 | * Copyright (C) 2013 Regents of the University of California. |
| 4 | * See COPYING for copyright and distribution information. |
| 5 | */ |
| 6 | |
| 7 | #ifndef NDN_SECURITY_CRYPTOPP_HPP |
| 8 | #define NDN_SECURITY_CRYPTOPP_HPP |
| 9 | |
| 10 | // suppress CryptoPP warnings |
| 11 | #pragma GCC system_header |
| 12 | #pragma clang system_header |
| 13 | |
| 14 | #include <cryptopp/asn.h> |
| 15 | #include <cryptopp/base64.h> |
| 16 | #include <cryptopp/des.h> |
| 17 | #include <cryptopp/files.h> |
| 18 | #include <cryptopp/filters.h> |
| 19 | #include <cryptopp/hex.h> |
| 20 | #include <cryptopp/modes.h> |
| 21 | #include <cryptopp/osrng.h> |
| 22 | #include <cryptopp/pssr.h> |
| 23 | #include <cryptopp/pwdbased.h> |
| 24 | #include <cryptopp/rsa.h> |
| 25 | #include <cryptopp/sha.h> |
| 26 | |
| 27 | #endif // NDN_SECURITY_CRYPTOPP_HPP |