blob: 289e6821d14250bccf724076116025546d7c7507 [file] [log] [blame]
/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil -*- */
/**
* Copyright (C) 2013 Regents of the University of California.
* @author: Jeff Thompson <jefft0@remap.ucla.edu>
* See COPYING for copyright and distribution information.
*/
#ifndef NDN_PUBLISHERPUBLICKEYDIGEST_HPP
#define NDN_PUBLISHERPUBLICKEYDIGEST_HPP
#include <vector>
#include "common.hpp"
#include "util/blob.hpp"
struct ndn_PublisherPublicKeyDigest;
namespace ndn {
/**
* A PublisherPublicKeyDigest holds the publisher public key digest value, if any.
* We make a separate class since this is used by multiple other classes.
*/
class PublisherPublicKeyDigest {
public:
PublisherPublicKeyDigest() {
}
/**
* Set the publisherPublicKeyDigestStruct to point to the entries in this PublisherPublicKeyDigest, without copying any memory.
* WARNING: The resulting pointers in publisherPublicKeyDigestStruct are invalid after a further use of this object which could reallocate memory.
* @param publisherPublicKeyDigestStruct a C ndn_PublisherPublicKeyDigest struct to receive the pointer
*/
void
get(struct ndn_PublisherPublicKeyDigest& publisherPublicKeyDigestStruct) const;
/**
* Clear this PublisherPublicKeyDigest, and copy from the ndn_PublisherPublicKeyDigest struct.
* @param excludeStruct a C ndn_Exclude struct
*/
void
set(const struct ndn_PublisherPublicKeyDigest& publisherPublicKeyDigestStruct);
const Blob&
getPublisherPublicKeyDigest() const { return publisherPublicKeyDigest_; }
void
setPublisherPublicKeyDigest(const Blob& publisherPublicKeyDigest) { publisherPublicKeyDigest_ = publisherPublicKeyDigest; }
/**
* Clear the publisherPublicKeyDigest.
*/
void
clear()
{
publisherPublicKeyDigest_.reset();
}
private:
Blob publisherPublicKeyDigest_;
};
}
#endif