blob: a7a1ae85db3438052befdcb4da80e5c1f04185b9 [file] [log] [blame]
Prashanth Swaminathanc61cf192015-06-30 21:21:33 -07001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2/**
3 * Copyright (c) 2014-2015, Regents of the University of California
4 *
5 * This file is part of ndn-group-encrypt (Group-based Encryption Protocol for NDN).
6 * See AUTHORS.md for complete list of ndn-group-encrypt authors and contributors.
7 *
8 * ndn-group-encrypt is free software: you can redistribute it and/or modify it under
9 * the terms of the GNU General Public License as published by the Free Software
10 * Foundation, either version 3 of the License, or (at your option) any later version.
11 *
12 * ndn-group-encrypt is distributed in the hope that it will be useful, but WITHOUT
13 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
14 * A PARTICULAR PURPOSE. See the GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License along with
17 * ndn-group-encrypt, e.g., in COPYING.md file. If not, see <http://www.gnu.org/licenses/>.
18 */
19
20#ifndef NDN_GEP_CRYPTOPP_HPP
21#define NDN_GEP_CRYPTOPP_HPP
22
23// suppress CryptoPP warnings
24#pragma GCC system_header
25#pragma clang system_header
26
27#include <cryptopp/asn.h>
28#include <cryptopp/base64.h>
29#include <cryptopp/des.h>
30#include <cryptopp/files.h>
31#include <cryptopp/filters.h>
32#include <cryptopp/hex.h>
33#include <cryptopp/modes.h>
34#include <cryptopp/osrng.h>
35#include <cryptopp/pssr.h>
36#include <cryptopp/pwdbased.h>
37#include <cryptopp/rsa.h>
38#include <cryptopp/sha.h>
39#include <cryptopp/eccrypto.h>
40#include <cryptopp/oids.h>
41#include <cryptopp/dsa.h>
42#include <cryptopp/cryptlib.h>
43
44#endif // NDN_GEP_CRYPTOPP_HPP