blob: 0fdd213b16628bf3cf62552c56e22fe75302f4d5 [file] [log] [blame]
/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil -*- */
/**
* Copyright (C) 2013 Regents of the University of California.
* @author: Yingdi Yu <yingdi@cs.ucla.edu>
* @author: Jeff Thompson <jefft0@remap.ucla.edu>
* See COPYING for copyright and distribution information.
*/
#ifndef NDN_CERTIFICATE_HPP
#define NDN_CERTIFICATE_HPP
#include "../../data.hpp"
namespace ndn {
class Certificate : public Data {
public:
/**
* The default constructor.
*/
Certificate();
/**
* Create a Certificate from the content in the data packet.
* @param data The data packet with the content to decode.
*/
Certificate(const Data& data);
};
}
#endif