blob: afd33dcee2c6224588fd2c25dd61b7a7e741cdbc [file] [log] [blame]
/**
* Copyright (C) 2013 Regents of the University of California.
* @author: Jeff Thompson <jefft0@remap.ucla.edu>
* @author: Yingdi Yu <yingdi@cs.ucla.edu>
* @author: Alexander Afanasyev <alexander.afanasyev@ucla.edu>
* See COPYING for copyright and distribution information.
*/
#ifndef NDN_ASN_EXT_HPP
#define NDN_ASN_EXT_HPP
#include "../../common.hpp"
#include "../../security/cryptopp.hpp"
namespace ndn {
size_t
DEREncodeGeneralTime(CryptoPP::BufferedTransformation& bt,
const time::system_clock::TimePoint& time);
void
BERDecodeTime(CryptoPP::BufferedTransformation& bt,
time::system_clock::TimePoint& time);
} // namespace ndn
#endif // NDN_ASN_EXT_HPP