Searched refs:aSignature (Results 1 – 5 of 5) sorted by relevance
| /openthread-latest/src/core/crypto/ |
| D | ecdsa.hpp | 193 Error Sign(const Sha256::Hash &aHash, Signature &aSignature) const in Sign() 195 return otPlatCryptoEcdsaSign(this, &aHash, &aSignature); in Sign() 267 Error Sign(const Sha256::Hash &aHash, Signature &aSignature) const in Sign() 269 return otPlatCryptoEcdsaSignUsingKeyRef(mKeyRef, &aHash, &aSignature); in Sign() 325 Error Verify(const Sha256::Hash &aHash, const Signature &aSignature) const in Verify() 327 return otPlatCryptoEcdsaVerify(this, &aHash, &aSignature); in Verify()
|
| D | crypto_platform.cpp | 561 otPlatCryptoEcdsaSignature *aSignature) in otPlatCryptoEcdsaSign() argument 603 ret = mbedtls_mpi_write_binary(&r, aSignature->m8, Ecdsa::P256::kMpiSize); in otPlatCryptoEcdsaSign() 606 … ret = mbedtls_mpi_write_binary(&s, aSignature->m8 + Ecdsa::P256::kMpiSize, Ecdsa::P256::kMpiSize); in otPlatCryptoEcdsaSign() 620 const otPlatCryptoEcdsaSignature *aSignature) in otPlatCryptoEcdsaVerify() argument 643 ret = mbedtls_mpi_read_binary(&r, aSignature->m8, Ecdsa::P256::kMpiSize); in otPlatCryptoEcdsaVerify() 646 … ret = mbedtls_mpi_read_binary(&s, aSignature->m8 + Ecdsa::P256::kMpiSize, Ecdsa::P256::kMpiSize); in otPlatCryptoEcdsaVerify() 776 otPlatCryptoEcdsaSignature *aSignature) in otPlatCryptoEcdsaSign() argument 780 OT_UNUSED_VARIABLE(aSignature); in otPlatCryptoEcdsaSign() 787 const otPlatCryptoEcdsaSignature *aSignature) in otPlatCryptoEcdsaVerify() argument 792 OT_UNUSED_VARIABLE(aSignature); in otPlatCryptoEcdsaVerify()
|
| /openthread-latest/examples/platforms/simulation/ |
| D | crypto.c | 101 otPlatCryptoEcdsaSignature *aSignature) in otPlatCryptoEcdsaSignUsingKeyRef() argument 105 OT_UNUSED_VARIABLE(aSignature); in otPlatCryptoEcdsaSignUsingKeyRef() 112 const otPlatCryptoEcdsaSignature *aSignature) in otPlatCryptoEcdsaVerifyUsingKeyRef() argument 116 OT_UNUSED_VARIABLE(aSignature); in otPlatCryptoEcdsaVerifyUsingKeyRef()
|
| /openthread-latest/include/openthread/platform/ |
| D | crypto.h | 588 otPlatCryptoEcdsaSignature *aSignature); 607 const otPlatCryptoEcdsaSignature *aSignature); 628 otPlatCryptoEcdsaSignature *aSignature); 682 const otPlatCryptoEcdsaSignature *aSignature);
|
| /openthread-latest/tests/unit/ |
| D | test_platform.cpp | 555 otPlatCryptoEcdsaSignature *aSignature) in otPlatCryptoEcdsaSignUsingKeyRef() argument 559 OT_UNUSED_VARIABLE(aSignature); in otPlatCryptoEcdsaSignUsingKeyRef() 566 const otPlatCryptoEcdsaSignature *aSignature) in otPlatCryptoEcdsaVerifyUsingKeyRef() argument 570 OT_UNUSED_VARIABLE(aSignature); in otPlatCryptoEcdsaVerifyUsingKeyRef()
|