40 return lock()->getName();
46 return lock()->getIdentity();
52 return lock()->getKeyType();
58 return lock()->getPublicKey();
64 return lock()->addCertificate(certificate);
70 return lock()->removeCertificate(certName);
76 return lock()->getCertificate(certName);
82 return lock()->getCertificates();
88 return lock()->setDefaultCertificate(certName);
94 return lock()->setDefaultCertificate(certificate);
100 return lock()->getDefaultCertificate();
103 Key::operator bool()
const 105 return !m_impl.expired();
108 shared_ptr<detail::KeyImpl>
111 auto impl = m_impl.lock();
113 if (impl ==
nullptr) {
114 BOOST_THROW_EXCEPTION(std::domain_error(
"Invalid key instance"));
123 return lhs.m_impl.owner_before(rhs.m_impl) || rhs.m_impl.owner_before(lhs.m_impl);
145 Name keyName = identity;
163 BOOST_THROW_EXCEPTION(std::invalid_argument(
"Key name `" + keyName.
toUri() +
"` " 164 "does not follow the naming conventions"));
std::ostream & operator<<(std::ostream &os, const Identity &id)
PartialName getPrefix(ssize_t nComponents) const
Extract a prefix of the name.
Copyright (c) 2011-2015 Regents of the University of California.
std::string toUri() const
Get URI representation of the name.
The certificate following the certificate format naming convention.
static const size_t MIN_KEY_NAME_LENGTH
const Component & get(ssize_t i) const
Get the component at the given index.
KeyType getKeyType() const
Get key type.
Name & append(const Component &component)
Append a component.
bool isValidKeyName(const Name &keyName)
Check if keyName follow the naming conventions for the key name.
KeyType
The type of a cryptographic key.
Container of certificates of a key.
A frontend handle of a key instance.
Represents an absolute name.
const Name & getName() const
Get key name.
size_t size() const
Get number of components.
const v2::Certificate & setDefaultCertificate(const Name &certName) const
Set an existing certificate with certName as the default certificate.
Represents a name component.
Name constructKeyName(const Name &identity, const name::Component &keyId)
Construct key name based on the appropriate naming conventions.
const v2::Certificate & getDefaultCertificate() const
Get the default certificate for this Key.
bool operator!=(const Identity &lhs, const Identity &rhs)
static const name::Component KEY_COMPONENT
const Buffer & getPublicKey() const
Get public key bits.
v2::Certificate getCertificate(const Name &certName) const
Get a certificate with certName.
Name extractIdentityFromKeyName(const Name &keyName)
Extract identity namespace from the key name keyName.
General-purpose automatically managed/resized buffer.
void removeCertificate(const Name &certName) const
Remove a certificate with certName.
Key()
Default Constructor.
const Name & getIdentity() const
Get the name of the belonging identity.
const CertificateContainer & getCertificates() const
Get all certificates for this key.