Home
last modified time | relevance | path

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

/openthread-latest/src/core/crypto/
Decdsa.hpp76 class PublicKey;
92 friend class PublicKey;
144 …Error GetPublicKey(PublicKey &aPublicKey) const { return otPlatCryptoEcdsaGetPublicKey(this, &aPub… in GetPublicKey()
248 Error GetPublicKey(PublicKey &aPublicKey) const in GetPublicKey()
297 class PublicKey : public otPlatCryptoEcdsaPublicKey, public Equatable<PublicKey> class in ot::Crypto::Ecdsa::P256
342 DefineCoreType(otPlatCryptoEcdsaPublicKey, Crypto::Ecdsa::P256::PublicKey);
/openthread-latest/tests/unit/
Dtest_ecdsa.cpp81 Ecdsa::P256::PublicKey publicKey; in TestEcdsaVector()
98 DumpBuffer("PublicKey", publicKey.GetBytes(), Ecdsa::P256::PublicKey::kSize); in TestEcdsaVector()
100 …VerifyOrQuit(sizeof(kPublicKey) == Ecdsa::P256::PublicKey::kSize, "Example public key is invalid"); in TestEcdsaVector()
139 Ecdsa::P256::PublicKey publicKey; in TestEcdsaKeyGenerationSignAndVerify()
155 DumpBuffer("PublicKey", publicKey.GetBytes(), Ecdsa::P256::PublicKey::kSize); in TestEcdsaKeyGenerationSignAndVerify()
/openthread-latest/src/core/net/
Ddns_types.hpp2127 const Crypto::Ecdsa::P256::PublicKey &GetKey(void) const { return mKey; } in GetKey()
2134 void SetKey(const Crypto::Ecdsa::P256::PublicKey &aKey) { mKey = aKey; } in SetKey()
2137 Crypto::Ecdsa::P256::PublicKey mKey;
Dsrp_client.cpp1193 Crypto::Ecdsa::P256::PublicKey publicKey; in ReadOrGenerateKey()
1575 Crypto::Ecdsa::P256::PublicKey publicKey; in AppendKeyRecord()
1583 …gth(sizeof(Dns::KeyRecord) - sizeof(Dns::ResourceRecord) + sizeof(Crypto::Ecdsa::P256::PublicKey)); in AppendKeyRecord()
Dsrp_server.hpp442 typedef Crypto::Ecdsa::P256::PublicKey Key; ///< Host key (public ECDSA P256 key).