Yingdi Yu | 0b0a736 | 2014-08-05 16:31:30 -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 | * |
| 5 | * BSD license, See the LICENSE file for more information |
| 6 | * |
| 7 | * Author: Yingdi Yu <yingdi@cs.ucla.edu> |
| 8 | */ |
| 9 | |
Yingdi Yu | eb692ac | 2015-02-10 18:46:18 -0800 | [diff] [blame] | 10 | #ifndef CHRONOCHAT_CRYPTOPP_HPP |
| 11 | #define CHRONOCHAT_CRYPTOPP_HPP |
Yingdi Yu | 0b0a736 | 2014-08-05 16:31:30 -0700 | [diff] [blame] | 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 | |
Yingdi Yu | eb692ac | 2015-02-10 18:46:18 -0800 | [diff] [blame] | 23 | #endif // CHRONOCHAT_CRYPTOPP_HPP |