blob: f49ebb25b316d5aeba5e3bb060fc6d7ddd25976d [file] [log] [blame]
Yingdi Yu0b0a7362014-08-05 16:31:30 -07001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil -*- */
2/*
3 * Copyright (c) 2013, Regents of the University of California
4 *
5 * BSD license, See the LICENSE file for more information
6 *
7 * Author: Yingdi Yu <yingdi@cs.ucla.edu>
8 */
9
10#ifndef CHRONOS_CRYPTOPP_HPP
11#define CHRONOS_CRYPTOPP_HPP
12
13// suppress CryptoPP warnings
14#pragma GCC system_header
15#pragma clang system_header
16
17#include <cryptopp/hex.h>
18#include <cryptopp/files.h>
19#include <cryptopp/base64.h>
20#include <cryptopp/sha.h>
21#include <cryptopp/filters.h>
22
23#endif // CHRONOS_CRYPTOPP_HPP