Yingdi Yu | 8dceb1d | 2014-02-18 12:45:10 -0800 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil -*- */ |
Alexander Afanasyev | dfa52c4 | 2014-04-24 21:10:11 -0700 | [diff] [blame] | 2 | /** |
| 3 | * Copyright (c) 2013-2014, Regents of the University of California. |
| 4 | * All rights reserved. |
Yingdi Yu | 8dceb1d | 2014-02-18 12:45:10 -0800 | [diff] [blame] | 5 | * |
Alexander Afanasyev | dfa52c4 | 2014-04-24 21:10:11 -0700 | [diff] [blame] | 6 | * 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 Yu | 8dceb1d | 2014-02-18 12:45:10 -0800 | [diff] [blame] | 8 | * |
Alexander Afanasyev | dfa52c4 | 2014-04-24 21:10:11 -0700 | [diff] [blame] | 9 | * This file licensed under New BSD License. See COPYING for detailed information about |
| 10 | * ndn-cxx library copyright, permissions, and redistribution restrictions. |
Yingdi Yu | 8dceb1d | 2014-02-18 12:45:10 -0800 | [diff] [blame] | 11 | */ |
| 12 | |
| 13 | #ifndef NDN_TLV_SECURITY_HPP |
| 14 | #define NDN_TLV_SECURITY_HPP |
| 15 | |
| 16 | #include "tlv.hpp" |
| 17 | |
| 18 | namespace ndn { |
| 19 | namespace tlv { |
| 20 | namespace security { |
| 21 | |
| 22 | enum { |
| 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 |