Home
last modified time | relevance | path

Searched refs:KeyRecord (Results 1 – 5 of 5) sorted by relevance

/openthread-latest/src/core/net/
Dsrp_advertising_proxy.cpp1101 keyRecord.SetFlags(Dns::KeyRecord::kAuthConfidPermitted, Dns::KeyRecord::kOwnerNonZone, in RegisterKey()
1102 Dns::KeyRecord::kSignatoryFlagGeneral); in RegisterKey()
1103 keyRecord.SetProtocol(Dns::KeyRecord::kProtocolDnsSec); in RegisterKey()
1104 keyRecord.SetAlgorithm(Dns::KeyRecord::kAlgorithmEcdsaP256Sha256); in RegisterKey()
Dsrp_client.cpp1574 Dns::KeyRecord key; in AppendKeyRecord()
1579 key.SetFlags(Dns::KeyRecord::kAuthConfidPermitted, Dns::KeyRecord::kOwnerNonZone, in AppendKeyRecord()
1580 Dns::KeyRecord::kSignatoryFlagGeneral); in AppendKeyRecord()
1581 key.SetProtocol(Dns::KeyRecord::kProtocolDnsSec); in AppendKeyRecord()
1582 key.SetAlgorithm(Dns::KeyRecord::kAlgorithmEcdsaP256Sha256); in AppendKeyRecord()
1583 …key.SetLength(sizeof(Dns::KeyRecord) - sizeof(Dns::ResourceRecord) + sizeof(Crypto::Ecdsa::P256::P… in AppendKeyRecord()
1695 sig.SetAlgorithm(Dns::KeyRecord::kAlgorithmEcdsaP256Sha256); in AppendSignature()
Ddns_types.cpp1188 bool KeyRecord::IsValid(void) const { return GetType() == Dns::ResourceRecord::kTypeKey; } in IsValid()
1193 KeyRecord::Init(); in Init()
1199 return KeyRecord::IsValid() && GetLength() == sizeof(*this) - sizeof(ResourceRecord) && in IsValid()
Ddns_types.hpp1943 class KeyRecord : public ResourceRecord class
2105 class Ecdsa256KeyRecord : public KeyRecord, public Clearable<Ecdsa256KeyRecord>, public Equatable<E…
Dsrp_server.cpp1276 …VerifyOrExit(sigRecord.GetAlgorithm() == Dns::KeyRecord::kAlgorithmEcdsaP256Sha256, error = kError… in ProcessAdditionalSection()