Junxiao Shi | 482ccc5 | 2014-03-31 13:05:24 -0700 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil -*- */ |
| 2 | /** |
Alexander Afanasyev | dfa52c4 | 2014-04-24 21:10:11 -0700 | [diff] [blame] | 3 | * Copyright (c) 2013-2014, Regents of the University of California. |
| 4 | * All rights reserved. |
| 5 | * |
| 6 | * This file is part of ndn-cxx library (NDN C++ library with eXperimental eXtensions). |
| 7 | * See AUTHORS.md for complete list of ndn-cxx authors and contributors. |
| 8 | * |
| 9 | * This file licensed under New BSD License. See COPYING for detailed information about |
| 10 | * ndn-cxx library copyright, permissions, and redistribution restrictions. |
Junxiao Shi | 482ccc5 | 2014-03-31 13:05:24 -0700 | [diff] [blame] | 11 | */ |
| 12 | |
| 13 | #ifndef NDN_SECURITY_CRYPTOPP_HPP |
| 14 | #define NDN_SECURITY_CRYPTOPP_HPP |
| 15 | |
| 16 | // suppress CryptoPP warnings |
| 17 | #pragma GCC system_header |
| 18 | #pragma clang system_header |
| 19 | |
| 20 | #include <cryptopp/asn.h> |
| 21 | #include <cryptopp/base64.h> |
| 22 | #include <cryptopp/des.h> |
| 23 | #include <cryptopp/files.h> |
| 24 | #include <cryptopp/filters.h> |
| 25 | #include <cryptopp/hex.h> |
| 26 | #include <cryptopp/modes.h> |
| 27 | #include <cryptopp/osrng.h> |
| 28 | #include <cryptopp/pssr.h> |
| 29 | #include <cryptopp/pwdbased.h> |
| 30 | #include <cryptopp/rsa.h> |
| 31 | #include <cryptopp/sha.h> |
| 32 | |
| 33 | #endif // NDN_SECURITY_CRYPTOPP_HPP |