blob: 8e1f2241c8b57188dc5de036b4017bba018f12fe [file] [log] [blame]
Yingdi Yu8dceb1d2014-02-18 12:45:10 -08001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil -*- */
Alexander Afanasyevdfa52c42014-04-24 21:10:11 -07002/**
3 * Copyright (c) 2013-2014, Regents of the University of California.
4 * All rights reserved.
Yingdi Yu8dceb1d2014-02-18 12:45:10 -08005 *
Alexander Afanasyevdfa52c42014-04-24 21:10:11 -07006 * This file is part of ndn-cxx library (NDN C++ library with eXperimental eXtensions).
7 * See AUTHORS.md for complete list of ndn-cxx authors and contributors.
Yingdi Yu8dceb1d2014-02-18 12:45:10 -08008 *
Alexander Afanasyevdfa52c42014-04-24 21:10:11 -07009 * This file licensed under New BSD License. See COPYING for detailed information about
10 * ndn-cxx library copyright, permissions, and redistribution restrictions.
Yingdi Yu8dceb1d2014-02-18 12:45:10 -080011 */
12
13#ifndef NDN_TLV_SECURITY_HPP
14#define NDN_TLV_SECURITY_HPP
15
16#include "tlv.hpp"
17
18namespace ndn {
19namespace tlv {
20namespace security {
21
22enum {
23 IdentityPackage = 128,
24 KeyPackage = 129,
25 CertificatePackage = 130
26};
27
28} // namespace security
29} // namespace tlv
30} // namespace ndn
31
32#endif // NDN_TLV_SECURITY_HPP