blob: 6abe8bd7132c6cbc033d3dc1d676ebb8dd113e0e [file] [log] [blame]
Jeff Thompson8238d002013-07-10 11:56:49 -07001/**
Jeff Thompson7687dc02013-09-13 11:54:07 -07002 * Copyright (C) 2013 Regents of the University of California.
3 * @author: Jeff Thompson <jefft0@remap.ucla.edu>
Jeff Thompson8238d002013-07-10 11:56:49 -07004 * See COPYING for copyright and distribution information.
5 */
6
7#ifndef NDN_PUBLISHERPUBLICKEYDIGEST_HPP
Jeff Thompson2d27e2f2013-08-09 12:55:00 -07008#define NDN_PUBLISHERPUBLICKEYDIGEST_HPP
Jeff Thompson8238d002013-07-10 11:56:49 -07009
10#include <vector>
Jeff Thompson51dd5fd2013-07-10 19:27:18 -070011#include "common.hpp"
Jeff Thompson53412192013-08-06 13:35:50 -070012#include "c/publisher-public-key-digest.h"
Jeff Thompson8238d002013-07-10 11:56:49 -070013
14namespace ndn {
15
16/**
17 * A PublisherPublicKeyDigest holds the publisher public key digest value, if any.
18 * We make a separate class since this is used by multiple other classes.
19 */
20class PublisherPublicKeyDigest {
21public:
22 PublisherPublicKeyDigest() {
23 }
24
25 /**
26 * Set the publisherPublicKeyDigestStruct to point to the entries in this PublisherPublicKeyDigest, without copying any memory.
27 * WARNING: The resulting pointers in publisherPublicKeyDigestStruct are invalid after a further use of this object which could reallocate memory.
28 * @param publisherPublicKeyDigestStruct a C ndn_PublisherPublicKeyDigest struct to receive the pointer
29 */
Jeff Thompson0050abe2013-09-17 12:50:25 -070030 void
31 get(struct ndn_PublisherPublicKeyDigest& publisherPublicKeyDigestStruct) const
Jeff Thompson8238d002013-07-10 11:56:49 -070032 {
33 publisherPublicKeyDigestStruct.publisherPublicKeyDigestLength = publisherPublicKeyDigest_.size();
34 if (publisherPublicKeyDigest_.size() > 0)
Jeff Thompson10ad12a2013-09-24 16:19:11 -070035 publisherPublicKeyDigestStruct.publisherPublicKeyDigest = (uint8_t *)publisherPublicKeyDigest_.buf();
Jeff Thompson8238d002013-07-10 11:56:49 -070036 else
37 publisherPublicKeyDigestStruct.publisherPublicKeyDigest = 0;
38 }
39
40 /**
41 * Clear this PublisherPublicKeyDigest, and copy from the ndn_PublisherPublicKeyDigest struct.
42 * @param excludeStruct a C ndn_Exclude struct
43 */
Jeff Thompson0050abe2013-09-17 12:50:25 -070044 void
45 set(const struct ndn_PublisherPublicKeyDigest& publisherPublicKeyDigestStruct)
Jeff Thompson8238d002013-07-10 11:56:49 -070046 {
Jeff Thompson03616c92013-09-12 14:30:01 -070047 publisherPublicKeyDigest_ =
48 Blob(publisherPublicKeyDigestStruct.publisherPublicKeyDigest, publisherPublicKeyDigestStruct.publisherPublicKeyDigestLength);
Jeff Thompson8238d002013-07-10 11:56:49 -070049 }
50
Jeff Thompson0050abe2013-09-17 12:50:25 -070051 const Blob&
52 getPublisherPublicKeyDigest() const { return publisherPublicKeyDigest_; }
Jeff Thompson8238d002013-07-10 11:56:49 -070053
Jeff Thompson0050abe2013-09-17 12:50:25 -070054 void
Jeff Thompson10ad12a2013-09-24 16:19:11 -070055 setPublisherPublicKeyDigest(const std::vector<uint8_t>& publisherPublicKeyDigest)
Jeff Thompson0050abe2013-09-17 12:50:25 -070056 {
57 publisherPublicKeyDigest_ = publisherPublicKeyDigest;
58 }
59
60 void
Jeff Thompson10ad12a2013-09-24 16:19:11 -070061 setPublisherPublicKeyDigest(const uint8_t *publisherPublicKeyDigest, unsigned int publisherPublicKeyDigestLength)
Jeff Thompson46bd45f2013-08-08 16:46:41 -070062 {
Jeff Thompson03616c92013-09-12 14:30:01 -070063 publisherPublicKeyDigest_ = Blob(publisherPublicKeyDigest, publisherPublicKeyDigestLength);
Jeff Thompson46bd45f2013-08-08 16:46:41 -070064 }
Jeff Thompson8659fa12013-09-23 11:57:41 -070065
66 /**
67 * Set the publisher public key digest to point to an existing byte array. IMPORTANT: After calling this,
68 * if you keep a pointer to the array then you must treat the array as immutable and promise not to change it.
69 * @param signature A pointer to a vector with the byte array. This takes another reference and does not copy the bytes.
70 */
71 void
Jeff Thompson10ad12a2013-09-24 16:19:11 -070072 setPublisherPublicKeyDigest(const ptr_lib::shared_ptr<std::vector<uint8_t> > &publisherPublicKeyDigest)
Jeff Thompson8659fa12013-09-23 11:57:41 -070073 {
74 publisherPublicKeyDigest_ = publisherPublicKeyDigest;
75 }
76
77 void
Jeff Thompson10ad12a2013-09-24 16:19:11 -070078 setPublisherPublicKeyDigest(const ptr_lib::shared_ptr<const std::vector<uint8_t> > &publisherPublicKeyDigest)
Jeff Thompson8659fa12013-09-23 11:57:41 -070079 {
80 publisherPublicKeyDigest_ = publisherPublicKeyDigest;
81 }
Jeff Thompsonf4585af2013-09-11 14:56:59 -070082
83 /**
84 * Clear the publisherPublicKeyDigest.
85 */
Jeff Thompson0050abe2013-09-17 12:50:25 -070086 void
87 clear()
Jeff Thompsonf4585af2013-09-11 14:56:59 -070088 {
Jeff Thompson03616c92013-09-12 14:30:01 -070089 publisherPublicKeyDigest_.reset();
Jeff Thompsonf4585af2013-09-11 14:56:59 -070090 }
Jeff Thompson46bd45f2013-08-08 16:46:41 -070091
Jeff Thompson8238d002013-07-10 11:56:49 -070092private:
Jeff Thompson03616c92013-09-12 14:30:01 -070093 Blob publisherPublicKeyDigest_;
Jeff Thompson8238d002013-07-10 11:56:49 -070094};
95
96}
97
98#endif