Jeff Thompson | cf0fdd9 | 2013-10-12 11:54:35 -0700 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil -*- */ |
| 2 | /** |
| 3 | * Copyright (C) 2013 Regents of the University of California. |
Jeff Thompson | c69163b | 2013-10-12 13:49:50 -0700 | [diff] [blame] | 4 | * @author: Yingdi Yu <yingdi@cs.ucla.edu> |
Jeff Thompson | cf0fdd9 | 2013-10-12 11:54:35 -0700 | [diff] [blame] | 5 | * @author: Jeff Thompson <jefft0@remap.ucla.edu> |
| 6 | * See COPYING for copyright and distribution information. |
| 7 | */ |
| 8 | |
| 9 | #ifndef NDN_IDENTITY_CERTIFICATE_HPP |
Jeff Thompson | e589c3f | 2013-10-12 17:30:50 -0700 | [diff] [blame] | 10 | #define NDN_IDENTITY_CERTIFICATE_HPP |
Jeff Thompson | cf0fdd9 | 2013-10-12 11:54:35 -0700 | [diff] [blame] | 11 | |
| 12 | #include "certificate.hpp" |
| 13 | |
| 14 | namespace ndn { |
| 15 | |
| 16 | class IdentityCertificate : public Certificate |
| 17 | { |
Jeff Thompson | c69163b | 2013-10-12 13:49:50 -0700 | [diff] [blame] | 18 | public: |
| 19 | /** |
| 20 | * The default constructor. |
| 21 | */ |
Jeff Thompson | 173fd43 | 2013-10-12 18:16:41 -0700 | [diff] [blame] | 22 | IdentityCertificate() |
| 23 | { |
| 24 | } |
Jeff Thompson | cf0fdd9 | 2013-10-12 11:54:35 -0700 | [diff] [blame] | 25 | |
Jeff Thompson | c69163b | 2013-10-12 13:49:50 -0700 | [diff] [blame] | 26 | /** |
| 27 | * Create an IdentityCertificate from the content in the data packet. |
| 28 | * @param data The data packet with the content to decode. |
| 29 | */ |
| 30 | IdentityCertificate(const Data& data); |
Jeff Thompson | 965569b | 2013-10-12 17:52:52 -0700 | [diff] [blame] | 31 | |
| 32 | /** |
| 33 | * The virtual destructor. |
| 34 | */ |
| 35 | virtual |
| 36 | ~IdentityCertificate(); |
Jeff Thompson | 173fd43 | 2013-10-12 18:16:41 -0700 | [diff] [blame] | 37 | |
Jeff Thompson | 6d59197 | 2013-10-17 11:16:32 -0700 | [diff] [blame] | 38 | /** |
| 39 | * Override the base class method to check that the name is a valid identity certificate name. |
| 40 | * @param name The identity certificate name which is copied. |
| 41 | * @return This Data so that you can chain calls to update values. |
| 42 | */ |
| 43 | virtual Data & |
Jeff Thompson | 173fd43 | 2013-10-12 18:16:41 -0700 | [diff] [blame] | 44 | setName(const Name& name); |
Jeff Thompson | 965569b | 2013-10-12 17:52:52 -0700 | [diff] [blame] | 45 | |
Jeff Thompson | 43a57b1 | 2013-10-22 16:25:38 -0700 | [diff] [blame] | 46 | Name |
| 47 | getPublicKeyName () const { return publicKeyName_; } |
Jeff Thompson | 965569b | 2013-10-12 17:52:52 -0700 | [diff] [blame] | 48 | |
| 49 | static bool |
| 50 | isIdentityCertificate(const Certificate& certificate); |
| 51 | |
| 52 | private: |
| 53 | static bool |
| 54 | isCorrectName(const Name& name); |
Jeff Thompson | 43a57b1 | 2013-10-22 16:25:38 -0700 | [diff] [blame] | 55 | |
| 56 | void |
| 57 | setPublicKeyName(); |
| 58 | |
| 59 | protected: |
| 60 | Name publicKeyName_; |
Jeff Thompson | cf0fdd9 | 2013-10-12 11:54:35 -0700 | [diff] [blame] | 61 | }; |
| 62 | |
| 63 | } |
| 64 | |
| 65 | #endif |