36 static Name digestSha256Identity(
"/localhost/identity/digest-sha256");
37 return digestSha256Identity;
43 static Name hmacIdentity(
"/localhost/identity/hmac");
48 const Name& signerName,
53 , m_info(signatureInfo)
74 if (signingStr.empty()) {
78 size_t pos = signingStr.find(
':');
79 if (pos == std::string::npos) {
80 NDN_THROW(std::invalid_argument(
"Invalid signing string cannot represent SigningInfo"));
83 std::string scheme = signingStr.substr(0, pos);
84 std::string nameArg = signingStr.substr(pos + 1);
94 else if (scheme ==
"key") {
97 else if (scheme ==
"cert") {
100 else if (scheme ==
"hmac-sha256") {
105 NDN_THROW(std::invalid_argument(
"Invalid signing string scheme"));
131 m_name = certificateName;
144 m_hmacKey = make_shared<transform::PrivateKey>();
167 m_identity = identity;
183 m_info = signatureInfo;
212 return os <<
"Signed Interest v0.3";
214 return os <<
"Signed Interest v0.2";
216 return os <<
"Unknown signed Interest format " <<
to_underlying(format);
Represents an absolute name.
void clear()
Remove all components.
Name & append(const Component &component)
Append a name component.
An output stream that writes to a Buffer.
shared_ptr< Buffer > buf()
Return a shared pointer to the underlying buffer.
Represents a SignatureInfo or InterestSignatureInfo TLV element.
Represents a name component.
Signing parameters passed to KeyChain.
SigningInfo(SignerType signerType=SIGNER_TYPE_NULL, const Name &signerName=Name(), const SignatureInfo &signatureInfo=SignatureInfo())
Constructor.
SigningInfo & setPibIdentity(const Identity &identity)
Set signer as a PIB identity handle identity.
const Name & getSignerName() const
SigningInfo & setSigningIdentity(const Name &identity)
Set signer as an identity with name identity.
static const Name & getDigestSha256Identity()
A localhost identity to indicate that the signature is generated using SHA-256.
SigningInfo & setSha256Signing()
Set SHA-256 as the signing method.
SigningInfo & setSigningCertName(const Name &certificateName)
Set signer as a certificate with name certificateName.
SigningInfo & setSigningHmacKey(const std::string &hmacKey)
Set signer to a base64-encoded HMAC key.
static const Name & getHmacIdentity()
A localhost identity to indicate that the signature is generated using an HMAC key.
SigningInfo & setSignatureInfo(const SignatureInfo &signatureInfo)
Set a semi-prepared SignatureInfo.
SignerType getSignerType() const
Return the signer type.
@ SIGNER_TYPE_CERT
Signer is a certificate, use it directly.
@ SIGNER_TYPE_SHA256
Use a SHA-256 digest only, no signer needs to be specified.
@ SIGNER_TYPE_HMAC
Signer is a HMAC key.
@ SIGNER_TYPE_NULL
No signer is specified, use default setting or follow the trust schema.
@ SIGNER_TYPE_ID
Signer is an identity, use its default key and default certificate.
@ SIGNER_TYPE_KEY
Signer is a key, use its default certificate.
SigningInfo & setDigestAlgorithm(const DigestAlgorithm &algorithm)
Set the digest algorithm for signing operations.
SigningInfo & setSigningKeyName(const Name &keyName)
Set signer as a key with name keyName.
SigningInfo & setPibKey(const Key &key)
Set signer as a PIB key handle key.
Frontend handle for an identity in the PIB.
const Name & getName() const
Return the name of the identity.
Frontend handle for a key in the PIB.
const Name & getName() const
Return the name of the key.
std::ostream & operator<<(std::ostream &os, const AdditionalDescription &desc)
@ V03
Sign Interest using Packet Specification v0.3 semantics.
@ V02
Sign Interest using Packet Specification v0.2 semantics.
@ HMAC
HMAC key, supports sign/verify operations.
@ SHA256
Use the SHA-256 hash of the public key as key id.
constexpr std::underlying_type_t< T > to_underlying(T val) noexcept