The packet signing interface. More...
#include <key-chain.hpp>
Classes | |
class | Error |
class | MismatchError |
Error thrown when the supplied TPM locator to KeyChain constructor does not match the locator stored in PIB. More... | |
Public Types | |
typedef function< unique_ptr< SecPublicInfo >const std::string &)> | PibCreateFunc |
typedef std::map< std::string, Block > | SignParams |
typedef function< unique_ptr< SecTpm >const std::string &)> | TpmCreateFunc |
Public Member Functions | |
KeyChain () | |
Constructor to create KeyChain with default PIB and TPM. More... | |
KeyChain (const std::string &pibLocator, const std::string &tpmLocator, bool allowReset=false) | |
KeyChain constructor. More... | |
virtual | ~KeyChain () |
void | addAppToAcl (const Name &keyName, KeyClass keyClass, const std::string &appPath, AclType acl) |
void | addCertificate (const IdentityCertificate &certificate) |
void | addCertificateAsIdentityDefault (const IdentityCertificate &certificate) |
void | addCertificateAsKeyDefault (const IdentityCertificate &certificate) |
void | addCertificateAsSystemDefault (const IdentityCertificate &certificate) |
void | addIdentity (const Name &identityName) |
void | addKey (const Name &keyName, const PublicKey &publicKeyDer) |
void | addPublicKey (const Name &keyName, KeyType keyType, const PublicKey &publicKeyDer) |
Name | createIdentity (const Name &identityName, const KeyParams ¶ms=DEFAULT_KEY_PARAMS) |
Create an identity by creating a pair of Key-Signing-Key (KSK) for this identity and a self-signed certificate of the KSK. More... | |
ConstBufferPtr | decryptInTpm (const uint8_t *data, size_t dataLength, const Name &keyName, bool isSymmetric) |
void | deleteCertificate (const Name &certificateName) |
delete a certificate. More... | |
void | deleteCertificateInfo (const Name &certificateName) |
void | deleteIdentity (const Name &identity) |
delete an identity. More... | |
void | deleteIdentityInfo (const Name &identity) |
void | deleteKey (const Name &keyName) |
delete a key. More... | |
void | deleteKeyPairInTpm (const Name &keyName) |
void | deletePublicKeyInfo (const Name &keyName) |
bool | doesCertificateExist (const Name &certificateName) const |
bool | doesIdentityExist (const Name &identityName) const |
bool | doesKeyExistInTpm (const Name &keyName, KeyClass keyClass) const |
bool | doesPublicKeyExist (const Name &keyName) const |
ConstBufferPtr | encryptInTpm (const uint8_t *data, size_t dataLength, const Name &keyName, bool isSymmetric) |
shared_ptr< SecuredBag > | exportIdentity (const Name &identity, const std::string &passwordStr) |
export an identity. More... | |
ConstBufferPtr | exportPrivateKeyPkcs5FromTpm (const Name &keyName, const std::string &password) |
Name | generateEcKeyPair (const Name &identityName, bool isKsk=false, uint32_t keySize=256) |
Generate a pair of EC keys for the specified identity. More... | |
Name | generateEcKeyPairAsDefault (const Name &identityName, bool isKsk=false, uint32_t keySize=256) |
Generate a pair of EC keys for the specified identity and set it as default key for the identity. More... | |
void | generateKeyPairInTpm (const Name &keyName, const KeyParams ¶ms) |
bool | generateRandomBlock (uint8_t *res, size_t size) const |
Name | generateRsaKeyPair (const Name &identityName, bool isKsk=false, uint32_t keySize=2048) |
Generate a pair of RSA keys for the specified identity. More... | |
Name | generateRsaKeyPairAsDefault (const Name &identityName, bool isKsk=false, uint32_t keySize=2048) |
Generate a pair of RSA keys for the specified identity and set it as default key for the identity. More... | |
void | generateSymmetricKeyInTpm (const Name &keyName, const KeyParams ¶ms) |
void | getAllCertificateNames (std::vector< Name > &nameList, bool isDefault) const |
void | getAllCertificateNamesOfKey (const Name &keyName, std::vector< Name > &nameList, bool isDefault) const |
void | getAllIdentities (std::vector< Name > &nameList, bool isDefault) const |
void | getAllKeyNames (std::vector< Name > &nameList, bool isDefault) const |
void | getAllKeyNamesOfIdentity (const Name &identity, std::vector< Name > &nameList, bool isDefault) const |
shared_ptr< IdentityCertificate > | getCertificate (const Name &certificateName) const |
shared_ptr< IdentityCertificate > | getDefaultCertificate () const |
Name | getDefaultCertificateName () const |
Name | getDefaultCertificateNameForIdentity (const Name &identityName) const |
Name | getDefaultCertificateNameForKey (const Name &keyName) const |
Name | getDefaultIdentity () const |
Name | getDefaultKeyNameForIdentity (const Name &identityName) const |
const KeyParams & | getDefaultKeyParamsForIdentity (const Name &identityName) const |
Get default key parameters for the specified identity. More... | |
bool | getInTerminal () const |
Name | getNewKeyName (const Name &identityName, bool useKsk) |
SecPublicInfo & | getPib () |
const SecPublicInfo & | getPib () const |
shared_ptr< PublicKey > | getPublicKey (const Name &keyName) const |
shared_ptr< PublicKey > | getPublicKeyFromTpm (const Name &keyName) const |
SecTpm & | getTpm () |
const SecTpm & | getTpm () const |
void | importIdentity (const SecuredBag &securedBag, const std::string &passwordStr) |
import an identity. More... | |
bool | importPrivateKeyPkcs5IntoTpm (const Name &keyName, const uint8_t *buf, size_t size, const std::string &password) |
bool | isLocked () const |
shared_ptr< IdentityCertificate > | prepareUnsignedIdentityCertificate (const Name &keyName, const Name &signingIdentity, const time::system_clock::TimePoint ¬Before, const time::system_clock::TimePoint ¬After, const std::vector< CertificateSubjectDescription > &subjectDescription, const Name &certPrefix=DEFAULT_PREFIX) |
prepare an unsigned identity certificate More... | |
shared_ptr< IdentityCertificate > | prepareUnsignedIdentityCertificate (const Name &keyName, const PublicKey &publicKey, const Name &signingIdentity, const time::system_clock::TimePoint ¬Before, const time::system_clock::TimePoint ¬After, const std::vector< CertificateSubjectDescription > &subjectDescription, const Name &certPrefix=DEFAULT_PREFIX) |
prepare an unsigned identity certificate More... | |
void | refreshDefaultCertificate () |
void | resetTpmPassword () |
shared_ptr< IdentityCertificate > | selfSign (const Name &keyName) |
Generate a self-signed certificate for a public key. More... | |
void | selfSign (IdentityCertificate &cert) |
Self-sign the supplied identity certificate. More... | |
void | setDefaultCertificateNameForKey (const Name &certificateName) |
void | setDefaultIdentity (const Name &identityName) |
void | setDefaultKeyNameForIdentity (const Name &keyName) |
void | setInTerminal (bool inTerminal) |
void | setTpmPassword (const uint8_t *password, size_t passwordLength) |
void | sign (Data &data, const SigningInfo ¶ms=DEFAULT_SIGNING_INFO) |
Sign data according to the supplied signing information. More... | |
void | sign (Interest &interest, const SigningInfo ¶ms=DEFAULT_SIGNING_INFO) |
Sign interest according to the supplied signing information. More... | |
Block | sign (const uint8_t *buffer, size_t bufferLength, const SigningInfo ¶ms) |
Sign buffer according to the supplied signing information. More... | |
template<typename T > | |
void | sign (T &packet, const Name &certificateName) |
Sign packet with a particular certificate. More... | |
Signature | sign (const uint8_t *buffer, size_t bufferLength, const Name &certificateName) |
Sign the byte array using a particular certificate. More... | |
template<typename T > | |
void | signByIdentity (T &packet, const Name &identityName) |
Sign packet using the default certificate of a particular identity. More... | |
Signature | signByIdentity (const uint8_t *buffer, size_t bufferLength, const Name &identityName) |
Sign the byte array using the default certificate of a particular identity. More... | |
Block | signInTpm (const uint8_t *data, size_t dataLength, const Name &keyName, DigestAlgorithm digestAlgorithm) |
void | signWithSha256 (Data &data) |
Set Sha256 weak signature for data . More... | |
void | signWithSha256 (Interest &interest) |
Set Sha256 weak signature for interest . More... | |
bool | unlockTpm (const char *password, size_t passwordLength, bool usePassword) |
Static Public Member Functions | |
static unique_ptr< SecPublicInfo > | createPib (const std::string &pibLocator) |
Create a PIB according to pibLocator . More... | |
static unique_ptr< SecTpm > | createTpm (const std::string &tpmLocator) |
Create a TPM according to tpmLocator . More... | |
static std::string | getDefaultPibLocator () |
Get default PIB locator. More... | |
static std::string | getDefaultTpmLocator () |
Get default TPM locator. More... | |
static tlv::SignatureTypeValue | getSignatureType (KeyType keyType, DigestAlgorithm digestAlgorithm) |
template<class PibType > | |
static void | registerPib (std::initializer_list< std::string > aliases) |
Register a new PIB. More... | |
template<class TpmType > | |
static void | registerTpm (std::initializer_list< std::string > aliases) |
Register a new TPM. More... | |
Static Public Attributes | |
static const RsaKeyParams | DEFAULT_KEY_PARAMS |
static const Name | DEFAULT_PREFIX |
static const SigningInfo | DEFAULT_SIGNING_INFO |
The packet signing interface.
Definition at line 48 of file v1/key-chain.hpp.
typedef function<unique_ptr<SecPublicInfo>const std::string&)> ndn::security::v1::KeyChain::PibCreateFunc |
Definition at line 75 of file v1/key-chain.hpp.
typedef std::map<std::string, Block> ndn::security::v1::KeyChain::SignParams |
Definition at line 878 of file v1/key-chain.hpp.
typedef function<unique_ptr<SecTpm>const std::string&)> ndn::security::v1::KeyChain::TpmCreateFunc |
Definition at line 76 of file v1/key-chain.hpp.
ndn::security::v1::KeyChain::KeyChain | ( | ) |
Constructor to create KeyChain with default PIB and TPM.
Default PIB and TPM are platform-dependent and can be overriden system-wide or on per-use basis.
Definition at line 121 of file v1/key-chain.cpp.
ndn::security::v1::KeyChain::KeyChain | ( | const std::string & | pibLocator, |
const std::string & | tpmLocator, | ||
bool | allowReset = false |
||
) |
KeyChain constructor.
pibLocator | PIB locator |
tpmLocator | TPM locator |
allowReset | if true, the PIB will be reset when the supplied tpmLocator mismatches the one in PIB |
Definition at line 153 of file v1/key-chain.cpp.
|
virtual |
Definition at line 163 of file v1/key-chain.cpp.
|
inline |
Definition at line 762 of file v1/key-chain.hpp.
|
inline |
Definition at line 507 of file v1/key-chain.hpp.
|
inline |
Definition at line 639 of file v1/key-chain.hpp.
|
inline |
Definition at line 633 of file v1/key-chain.hpp.
|
inline |
Definition at line 645 of file v1/key-chain.hpp.
|
inline |
Definition at line 471 of file v1/key-chain.hpp.
|
inline |
Definition at line 489 of file v1/key-chain.hpp.
|
inline |
Definition at line 483 of file v1/key-chain.hpp.
Name ndn::security::v1::KeyChain::createIdentity | ( | const Name & | identityName, |
const KeyParams & | params = DEFAULT_KEY_PARAMS |
||
) |
Create an identity by creating a pair of Key-Signing-Key (KSK) for this identity and a self-signed certificate of the KSK.
identityName | The name of the identity. |
params | The key parameter if a key needs to be generated for the identity. |
Definition at line 293 of file v1/key-chain.cpp.
|
static |
Create a PIB according to pibLocator
.
Definition at line 207 of file v1/key-chain.cpp.
|
static |
Create a TPM according to tpmLocator
.
Definition at line 244 of file v1/key-chain.cpp.
|
inline |
Definition at line 732 of file v1/key-chain.hpp.
void ndn::security::v1::KeyChain::deleteCertificate | ( | const Name & | certificateName | ) |
delete a certificate.
certificateName | The certificate to be deleted. |
KeyChain::Error | if certificate cannot be deleted. |
Definition at line 802 of file v1/key-chain.cpp.
|
inline |
Definition at line 579 of file v1/key-chain.hpp.
void ndn::security::v1::KeyChain::deleteIdentity | ( | const Name & | identity | ) |
delete an identity.
identity | The identity to be deleted. |
KeyChain::Error | if identity cannot be deleted. |
Definition at line 815 of file v1/key-chain.cpp.
|
inline |
Definition at line 591 of file v1/key-chain.hpp.
void ndn::security::v1::KeyChain::deleteKey | ( | const Name & | keyName | ) |
delete a key.
keyName | The key to be deleted. |
KeyChain::Error | if key cannot be deleted. |
Definition at line 808 of file v1/key-chain.cpp.
|
inline |
Definition at line 712 of file v1/key-chain.hpp.
|
inline |
Definition at line 585 of file v1/key-chain.hpp.
|
inline |
Definition at line 501 of file v1/key-chain.hpp.
|
inline |
Definition at line 465 of file v1/key-chain.hpp.
|
inline |
Definition at line 750 of file v1/key-chain.hpp.
|
inline |
Definition at line 477 of file v1/key-chain.hpp.
|
inline |
Definition at line 738 of file v1/key-chain.hpp.
shared_ptr< SecuredBag > ndn::security::v1::KeyChain::exportIdentity | ( | const Name & | identity, |
const std::string & | passwordStr | ||
) |
export an identity.
identity | The identity to export. |
passwordStr | The password to secure the private key. |
SecPublicInfo::Error | if anything goes wrong in exporting. |
Definition at line 599 of file v1/key-chain.cpp.
|
inline |
Definition at line 768 of file v1/key-chain.hpp.
Name ndn::security::v1::KeyChain::generateEcKeyPair | ( | const Name & | identityName, |
bool | isKsk = false , |
||
uint32_t | keySize = 256 |
||
) |
Generate a pair of EC keys for the specified identity.
identityName | The name of the identity. |
isKsk | true for generating a Key-Signing-Key (KSK), false for a Data-Signing-Key (KSK). |
keySize | The size of the key. |
Definition at line 334 of file v1/key-chain.cpp.
Name ndn::security::v1::KeyChain::generateEcKeyPairAsDefault | ( | const Name & | identityName, |
bool | isKsk = false , |
||
uint32_t | keySize = 256 |
||
) |
Generate a pair of EC keys for the specified identity and set it as default key for the identity.
identityName | The name of the identity. |
isKsk | true for generating a Key-Signing-Key (KSK), false for a Data-Signing-Key (KSK). |
keySize | The size of the key. |
Definition at line 351 of file v1/key-chain.cpp.
|
inline |
Definition at line 706 of file v1/key-chain.hpp.
|
inline |
Definition at line 756 of file v1/key-chain.hpp.
Name ndn::security::v1::KeyChain::generateRsaKeyPair | ( | const Name & | identityName, |
bool | isKsk = false , |
||
uint32_t | keySize = 2048 |
||
) |
Generate a pair of RSA keys for the specified identity.
identityName | The name of the identity. |
isKsk | true for generating a Key-Signing-Key (KSK), false for a Data-Signing-Key (KSK). |
keySize | The size of the key. |
Definition at line 327 of file v1/key-chain.cpp.
Name ndn::security::v1::KeyChain::generateRsaKeyPairAsDefault | ( | const Name & | identityName, |
bool | isKsk = false , |
||
uint32_t | keySize = 2048 |
||
) |
Generate a pair of RSA keys for the specified identity and set it as default key for the identity.
identityName | The name of the identity. |
isKsk | true for generating a Key-Signing-Key (KSK), false for a Data-Signing-Key (KSK). |
keySize | The size of the key. |
Definition at line 341 of file v1/key-chain.cpp.
|
inline |
Definition at line 744 of file v1/key-chain.hpp.
|
inline |
Definition at line 565 of file v1/key-chain.hpp.
|
inline |
Definition at line 571 of file v1/key-chain.hpp.
|
inline |
Definition at line 547 of file v1/key-chain.hpp.
|
inline |
Definition at line 553 of file v1/key-chain.hpp.
|
inline |
Definition at line 559 of file v1/key-chain.hpp.
|
inline |
Definition at line 513 of file v1/key-chain.hpp.
|
inline |
Definition at line 651 of file v1/key-chain.hpp.
|
inline |
Definition at line 627 of file v1/key-chain.hpp.
|
inline |
Definition at line 621 of file v1/key-chain.hpp.
|
inline |
Definition at line 541 of file v1/key-chain.hpp.
|
inline |
Definition at line 519 of file v1/key-chain.hpp.
|
inline |
Definition at line 525 of file v1/key-chain.hpp.
const KeyParams & ndn::security::v1::KeyChain::getDefaultKeyParamsForIdentity | ( | const Name & | identityName | ) | const |
Get default key parameters for the specified identity.
If identity has a previously generated key, the returned parameters will include the same type of the key. If there are no existing keys, DEFAULT_KEY_PARAMS is used.
Definition at line 653 of file v1/key-chain.cpp.
|
static |
Get default PIB locator.
Definition at line 181 of file v1/key-chain.cpp.
|
static |
Get default TPM locator.
Definition at line 219 of file v1/key-chain.cpp.
|
inline |
Definition at line 688 of file v1/key-chain.hpp.
Definition at line 615 of file v1/key-chain.hpp.
|
inline |
Definition at line 438 of file v1/key-chain.hpp.
|
inline |
Definition at line 444 of file v1/key-chain.hpp.
|
inline |
Definition at line 495 of file v1/key-chain.hpp.
|
inline |
Definition at line 718 of file v1/key-chain.hpp.
|
static |
Definition at line 828 of file v1/key-chain.cpp.
|
inline |
Definition at line 450 of file v1/key-chain.hpp.
|
inline |
Definition at line 456 of file v1/key-chain.hpp.
void ndn::security::v1::KeyChain::importIdentity | ( | const SecuredBag & | securedBag, |
const std::string & | passwordStr | ||
) |
import an identity.
securedBag | The encoded import data. |
passwordStr | The password to secure the private key. |
Definition at line 628 of file v1/key-chain.cpp.
|
inline |
Definition at line 774 of file v1/key-chain.hpp.
|
inline |
Definition at line 694 of file v1/key-chain.hpp.
shared_ptr< IdentityCertificate > ndn::security::v1::KeyChain::prepareUnsignedIdentityCertificate | ( | const Name & | keyName, |
const Name & | signingIdentity, | ||
const time::system_clock::TimePoint & | notBefore, | ||
const time::system_clock::TimePoint & | notAfter, | ||
const std::vector< CertificateSubjectDescription > & | subjectDescription, | ||
const Name & | certPrefix = DEFAULT_PREFIX |
||
) |
prepare an unsigned identity certificate
keyName | Key name, e.g., /<identity_name>/ksk-123456 . |
signingIdentity | The signing identity. |
notBefore | Refer to IdentityCertificate. |
notAfter | Refer to IdentityCertificate. |
subjectDescription | Refer to IdentityCertificate. |
certPrefix | Prefix before KEY component. By default, KeyChain will infer the certificate name according to the relation between the signingIdentity and the subject identity. If signingIdentity is a prefix of the subject identity, KEY will be inserted after the signingIdentity, otherwise KEY is inserted after subject identity (i.e., before ksk-.... ). |
Definition at line 362 of file v1/key-chain.cpp.
shared_ptr< IdentityCertificate > ndn::security::v1::KeyChain::prepareUnsignedIdentityCertificate | ( | const Name & | keyName, |
const PublicKey & | publicKey, | ||
const Name & | signingIdentity, | ||
const time::system_clock::TimePoint & | notBefore, | ||
const time::system_clock::TimePoint & | notAfter, | ||
const std::vector< CertificateSubjectDescription > & | subjectDescription, | ||
const Name & | certPrefix = DEFAULT_PREFIX |
||
) |
prepare an unsigned identity certificate
keyName | Key name, e.g., /<identity_name>/ksk-123456 . |
publicKey | Public key to sign. |
signingIdentity | The signing identity. |
notBefore | Refer to IdentityCertificate. |
notAfter | Refer to IdentityCertificate. |
subjectDescription | Refer to IdentityCertificate. |
certPrefix | Prefix before KEY component. By default, KeyChain will infer the certificate name according to the relation between the signingIdentity and the subject identity. If signingIdentity is a prefix of the subject identity, KEY will be inserted after the signingIdentity, otherwise KEY is inserted after subject identity (i.e., before ksk-.... ). |
Definition at line 383 of file v1/key-chain.cpp.
|
inline |
Definition at line 660 of file v1/key-chain.hpp.
|
inlinestatic |
Register a new PIB.
aliases | List of schemes with which this PIB will be associated. The first alias in the list is considered a canonical name of the PIB instance. |
Definition at line 914 of file v1/key-chain.hpp.
|
inlinestatic |
Register a new TPM.
aliases | List of schemes with which this TPM will be associated The first alias in the list is considered a canonical name of the TPM instance. |
Definition at line 923 of file v1/key-chain.hpp.
|
inline |
Definition at line 676 of file v1/key-chain.hpp.
shared_ptr< IdentityCertificate > ndn::security::v1::KeyChain::selfSign | ( | const Name & | keyName | ) |
Generate a self-signed certificate for a public key.
keyName | The name of the public key |
Definition at line 553 of file v1/key-chain.cpp.
void ndn::security::v1::KeyChain::selfSign | ( | IdentityCertificate & | cert | ) |
Self-sign the supplied identity certificate.
cert | The supplied cert. |
SecTpm::Error | if the private key does not exist. |
Definition at line 583 of file v1/key-chain.cpp.
|
inline |
Definition at line 609 of file v1/key-chain.hpp.
|
inline |
Definition at line 597 of file v1/key-chain.hpp.
|
inline |
Definition at line 603 of file v1/key-chain.hpp.
|
inline |
Definition at line 682 of file v1/key-chain.hpp.
|
inline |
Definition at line 670 of file v1/key-chain.hpp.
void ndn::security::v1::KeyChain::sign | ( | Data & | data, |
const SigningInfo & | params = DEFAULT_SIGNING_INFO |
||
) |
Sign data according to the supplied signing information.
This method uses the supplied signing information params
to create the SignatureInfo block:
After that, the method assigns the created SignatureInfo to the data packets, generate a signature and sets as part of the SignatureValue block.
data | The data to sign |
params | The signing parameters. |
Error | if signing fails. |
Definition at line 513 of file v1/key-chain.cpp.
void ndn::security::v1::KeyChain::sign | ( | Interest & | interest, |
const SigningInfo & | params = DEFAULT_SIGNING_INFO |
||
) |
Sign interest according to the supplied signing information.
This method uses the supplied signing information params
to create the SignatureInfo block:
After that, the method appends the created SignatureInfo to the interest name, generate a signature and appends it as part of the SignatureValue block to the interest name.
interest | The interest to sign |
params | The signing parameters. |
Error | if signing fails. |
Definition at line 519 of file v1/key-chain.cpp.
Block ndn::security::v1::KeyChain::sign | ( | const uint8_t * | buffer, |
size_t | bufferLength, | ||
const SigningInfo & | params | ||
) |
Sign buffer according to the supplied signing information.
buffer | The buffer to sign |
bufferLength | The buffer size |
params | The signing parameters. |
Error | if signing fails. |
Definition at line 525 of file v1/key-chain.cpp.
void ndn::security::v1::KeyChain::sign | ( | T & | packet, |
const Name & | certificateName | ||
) |
Sign packet with a particular certificate.
packet | The packet to be signed. |
certificateName | The certificate name of the key to use for signing. |
SecPublicInfo::Error | if certificate does not exist. |
Definition at line 900 of file v1/key-chain.hpp.
Signature ndn::security::v1::KeyChain::sign | ( | const uint8_t * | buffer, |
size_t | bufferLength, | ||
const Name & | certificateName | ||
) |
Sign the byte array using a particular certificate.
buffer | The byte array to be signed. |
bufferLength | the length of buffer. |
certificateName | The certificate name of the signing key. |
SecPublicInfo::Error | if certificate does not exist. |
Definition at line 534 of file v1/key-chain.cpp.
void ndn::security::v1::KeyChain::signByIdentity | ( | T & | packet, |
const Name & | identityName | ||
) |
Sign packet using the default certificate of a particular identity.
If there is no default certificate of that identity, this method will create a self-signed certificate.
packet | The packet to be signed. |
identityName | The signing identity name. |
Definition at line 907 of file v1/key-chain.hpp.
Signature ndn::security::v1::KeyChain::signByIdentity | ( | const uint8_t * | buffer, |
size_t | bufferLength, | ||
const Name & | identityName | ||
) |
Sign the byte array using the default certificate of a particular identity.
buffer | The byte array to be signed. |
bufferLength | the length of buffer. |
identityName | The identity name. |
Definition at line 764 of file v1/key-chain.cpp.
|
inline |
Definition at line 724 of file v1/key-chain.hpp.
void ndn::security::v1::KeyChain::signWithSha256 | ( | Data & | data | ) |
Set Sha256 weak signature for data
.
Definition at line 772 of file v1/key-chain.cpp.
void ndn::security::v1::KeyChain::signWithSha256 | ( | Interest & | interest | ) |
Set Sha256 weak signature for interest
.
Definition at line 778 of file v1/key-chain.cpp.
|
inline |
Definition at line 700 of file v1/key-chain.hpp.
|
static |
Definition at line 876 of file v1/key-chain.hpp.
|
static |
Definition at line 872 of file v1/key-chain.hpp.
|
static |
Definition at line 873 of file v1/key-chain.hpp.