Alexander Afanasyev | 0ea6e08 | 2013-12-26 15:16:37 -0800 | [diff] [blame] | 1 | /** |
| 2 | * Copyright (C) 2013 Regents of the University of California. |
| 3 | * @author: Jeff Thompson <jefft0@remap.ucla.edu> |
| 4 | * @author: Yingdi Yu <yingdi@cs.ucla.edu> |
| 5 | * @author: Alexander Afanasyev <alexander.afanasyev@ucla.edu> |
| 6 | * See COPYING for copyright and distribution information. |
| 7 | */ |
| 8 | |
| 9 | #ifndef NDN_ASN_EXT_HPP |
| 10 | #define NDN_ASN_EXT_HPP |
| 11 | |
| 12 | #include <ndn-cpp/common.hpp> |
| 13 | #include <cryptopp/asn.h> |
| 14 | |
| 15 | namespace ndn { |
| 16 | |
| 17 | namespace Asn { |
| 18 | struct Error : public std::runtime_error { Error(const std::string &what) : std::runtime_error(what) {} }; |
| 19 | } |
| 20 | |
| 21 | size_t |
| 22 | DEREncodeGeneralTime(CryptoPP::BufferedTransformation &bt, MillisecondsSince1970 time); |
| 23 | |
| 24 | void |
| 25 | BERDecodeTime(CryptoPP::BufferedTransformation &bt, MillisecondsSince1970 &time); |
| 26 | |
| 27 | } // namespace ndn |
| 28 | |
| 29 | #endif // NDN_ASN_EXT_HPP |
| 30 | |