22 #ifndef NDN_SECURITTY_PIB_SQLITE3_HPP 23 #define NDN_SECURITTY_PIB_SQLITE3_HPP 116 virtual std::set<Name>
197 virtual std::set<name::Component>
273 virtual std::set<Name>
306 #endif // NDN_SECURITTY_PIB_SQLITE3_HPP virtual bool hasCertificate(const Name &certName) const final
Check the existence of a certificate with name certName.
PibSqlite3(const std::string &dir="")
Constructor of PibSqlite3.
virtual void setDefaultIdentity(const Name &identityName) final
Set an identity with name identityName as the default identity.
virtual void setDefaultCertificateOfKey(const Name &identity, const name::Component &keyId, const Name &certName) final
Set a cert with name certName as the default of a key with id of .
Copyright (c) 2011-2015 Regents of the University of California.
virtual std::set< Name > getCertificatesOfKey(const Name &identity, const name::Component &keyId) const final
Get a list of certificate names of a key with id keyId of identity.
virtual void addIdentity(const Name &identity) final
Add an identity.
virtual PublicKey getKeyBits(const Name &identity, const name::Component &keyId) const final
Get the key bits of a key.
Pib backend implementation based on SQLite3 database.
virtual name::Component getDefaultKeyOfIdentity(const Name &identity) const final
Get the id of the default key of an identity with name identity.
virtual void removeIdentity(const Name &identity) final
Remove an identity.
virtual bool hasKey(const Name &identity, const name::Component &keyId) const final
Check the existence of a key.
virtual IdentityCertificate getDefaultCertificateOfKey(const Name &identity, const name::Component &keyId) const final
Get the default certificate of a key with id of .
virtual std::string getTpmLocator() const final
Get TPM Locator.
virtual std::set< name::Component > getKeysOfIdentity(const Name &identity) const final
Get all the key ids of an identity with name identity.
Name abstraction to represent an absolute name.
virtual void setTpmLocator(const std::string &tpmLocator) final
Set the corresponding TPM information to tpmLocator.
Abstract class of PIB implementation.
virtual bool hasIdentity(const Name &identity) const final
Check the existence of an identity.
virtual void removeCertificate(const Name &certName) final
Remove a certificate with name certName.
virtual Name getDefaultIdentity() const final
Get the default identity.
virtual std::set< Name > getIdentities() const final
Get the name of all the identities.
virtual void addKey(const Name &identity, const name::Component &keyId, const PublicKey &publicKey) final
Add a key.
#define NDN_CXX_DECL_FINAL
expands to 'final' if compiler supports this feature, otherwise expands to nothing ...
virtual void setDefaultKeyOfIdentity(const Name &identity, const name::Component &keyId) final
Set an key with id keyId as the default key of an identity with name identity.
Component holds a read-only name component value.
virtual IdentityCertificate getCertificate(const Name &certName) const final
Get a certificate with name certName.
virtual void removeKey(const Name &identity, const name::Component &keyId) final
Remove a key.
~PibSqlite3()
Destruct and cleanup internal state.
virtual void addCertificate(const IdentityCertificate &certificate) final
Add a certificate.