blob: 01fbfc2d1b0bd29ca81c0e37a5b6af9147e27aa7 [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
Yingdi Yueb692ac2015-02-10 18:46:18 -080010#ifndef CHRONOCHAT_CRYPTOPP_HPP
11#define CHRONOCHAT_CRYPTOPP_HPP
Yingdi Yu0b0a7362014-08-05 16:31:30 -070012
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
Yingdi Yueb692ac2015-02-10 18:46:18 -080023#endif // CHRONOCHAT_CRYPTOPP_HPP