Searched refs:Ecdsa (Results 1 – 9 of 9) sorted by relevance
/openthread-2.7.6/tests/unit/ |
D | test_ecdsa.cpp | 78 Ecdsa::P256::KeyPair keyPair; in TestEcdsaVector() 79 Ecdsa::P256::PublicKey publicKey; in TestEcdsaVector() 80 Ecdsa::P256::Signature signature; in TestEcdsaVector() 96 DumpBuffer("PublicKey", publicKey.GetBytes(), Ecdsa::P256::PublicKey::kSize); in TestEcdsaVector() 98 …VerifyOrQuit(sizeof(kPublicKey) == Ecdsa::P256::PublicKey::kSize, "Example public key is invalid"); in TestEcdsaVector() 134 Ecdsa::P256::KeyPair keyPair; in TestEdsaKeyGenerationSignAndVerify() 135 Ecdsa::P256::PublicKey publicKey; in TestEdsaKeyGenerationSignAndVerify() 136 Ecdsa::P256::Signature signature; in TestEdsaKeyGenerationSignAndVerify() 151 DumpBuffer("PublicKey", publicKey.GetBytes(), Ecdsa::P256::PublicKey::kSize); in TestEdsaKeyGenerationSignAndVerify()
|
/openthread-2.7.6/src/core/crypto/ |
D | ecdsa.hpp | 49 namespace Ecdsa { namespace
|
D | ecdsa.cpp | 52 namespace Ecdsa { namespace
|
/openthread-2.7.6/src/core/api/ |
D | crypto_api.cpp | 103 …return Ecdsa::Sign(aOutput, *aOutputLength, aInputHash, aInputHashLength, aPrivateKey, aPrivateKey… in otCryptoEcdsaSign()
|
/openthread-2.7.6/src/core/net/ |
D | srp_client.hpp | 799 Crypto::Ecdsa::P256::KeyPair mKeyPair; // The ECDSA key pair. 817 Error ReadOrGenerateKey(Crypto::Ecdsa::P256::KeyPair &aKeyPair);
|
D | srp_client.cpp | 794 Error Client::ReadOrGenerateKey(Crypto::Ecdsa::P256::KeyPair &aKeyPair) in ReadOrGenerateKey() 802 Crypto::Ecdsa::P256::PublicKey publicKey; in ReadOrGenerateKey() 991 Crypto::Ecdsa::P256::PublicKey publicKey; in AppendKeyRecord() 999 …key.SetLength(sizeof(Dns::KeyRecord) - sizeof(Dns::ResourceRecord) + sizeof(Crypto::Ecdsa::P256::P… in AppendKeyRecord() 1096 Crypto::Ecdsa::P256::Signature signature; in AppendSignature()
|
D | srp_server.cpp | 938 VerifyOrExit(signatureLength == Crypto::Ecdsa::P256::Signature::kSize, error = kErrorParse); in ProcessAdditionalSection() 960 Crypto::Ecdsa::P256::Signature signature; in VerifySignature() 963 … VerifyOrExit(aSigRdataLength >= Crypto::Ecdsa::P256::Signature::kSize, error = kErrorInvalidArgs); in VerifySignature() 984 signatureOffset = aSigRdataOffset + aSigRdataLength - Crypto::Ecdsa::P256::Signature::kSize; in VerifySignature()
|
D | dns_types.hpp | 2054 const Crypto::Ecdsa::P256::PublicKey &GetKey(void) const { return mKey; } in GetKey() 2057 Crypto::Ecdsa::P256::PublicKey mKey;
|
/openthread-2.7.6/src/core/common/ |
D | settings.hpp | 615 typedef Crypto::Ecdsa::P256::KeyPair ValueType; ///< The associated value type.
|