Pib Class¶
In general, a PIB (Public Information Base) stores the public portion of a user’s cryptography keys. The format and location of stored information is indicated by the PIB locator. A PIB is designed to work with a TPM (Trusted Platform Module) which stores private keys. There is a one-to-one association between a PIB and a TPM, and therefore the TPM locator is recorded by the PIB to enforce this association and prevent one from operating on mismatched PIB and TPM.
Information in the PIB is organized in a hierarchy of Identity-Key-Certificate. At the top level, this Pib class provides access to identities, and allows setting a default identity. Properties of an identity (such as PibKey objects) can be accessed after obtaining a PibIdentity object. (Likewise, CertificateV2 objects can be obtained from a PibKey object.)
Note
A Pib instance is created and managed only by the KeyChain, and is returned by the KeyChain getPib() method.
[C++]: | #include <ndn-cpp/security/pib/pib.hpp> Namespace:
ndn |
---|---|
[Python]: | Module: pyndn.security.pib |
[Java]: | Package: net.named_data.jndn.security.pib |
Pib.getDefaultIdentity Method¶
Get the default identity.
[C++]: | ptr_lib::shared_ptr<PibIdentity> getDefaultIdentity();
|
---|---|
[Python]: | # Returns PibIdentity
def getDefaultIdentity(self)
|
[JavaScript]: | // Returns PibIdentity
Pib.prototype.getDefaultIdentity = function(
[onComplete // function]
[, onError // function]
)
|
[Java]: | public final PibIdentity getDefaultIdentity()
|
Parameters: |
|
Returns: | The default PibIdentity object. [JavaScript only: However, if onComplete is supplied then return undefined and use onComplete as described above.] |
Throw: | Pib.Error if there is no default identity. |
Pib.getIdentity Method¶
Get the identity with the name identityName.
[C++]: | ptr_lib::shared_ptr<PibIdentity> getIdentity(
const Name& identityName
) const;
|
---|---|
[Python]: | # Returns PibIdentity
def getIdentity(self,
identityName # Name
)
|
[JavaScript]: | // Returns PibIdentity
Pib.prototype.getIdentity = function(
identityName // Name
[, onComplete // function]
[, onError // function]
)
|
[Java]: | public final PibIdentity getIdentity(
Name identityName
)
|
Parameters: |
|
Returns: | The PibIdentity object. [JavaScript only: However, if onComplete is supplied then return undefined and use onComplete as described above.] |
Throw: | Pib.Error if the identity does not exist. |