Home
last modified time | relevance | path

Searched refs:ecdsa (Results 1 – 21 of 21) sorted by relevance

/openthread-latest/src/core/crypto/
Dcrypto_platform.cpp566 mbedtls_ecdsa_context ecdsa; in otPlatCryptoEcdsaSign() local
572 mbedtls_ecdsa_init(&ecdsa); in otPlatCryptoEcdsaSign()
589 ret = mbedtls_ecdsa_from_keypair(&ecdsa, keypair); in otPlatCryptoEcdsaSign()
593 …ret = mbedtls_ecdsa_sign_det_ext(&ecdsa.MBEDTLS_PRIVATE(grp), &r, &s, &ecdsa.MBEDTLS_PRIVATE(d), a… in otPlatCryptoEcdsaSign()
596 …ret = mbedtls_ecdsa_sign_det(&ecdsa.MBEDTLS_PRIVATE(grp), &r, &s, &ecdsa.MBEDTLS_PRIVATE(d), aHash… in otPlatCryptoEcdsaSign()
613 mbedtls_ecdsa_free(&ecdsa); in otPlatCryptoEcdsaSign()
623 mbedtls_ecdsa_context ecdsa; in otPlatCryptoEcdsaVerify() local
628 mbedtls_ecdsa_init(&ecdsa); in otPlatCryptoEcdsaVerify()
632 ret = mbedtls_ecp_group_load(&ecdsa.MBEDTLS_PRIVATE(grp), MBEDTLS_ECP_DP_SECP256R1); in otPlatCryptoEcdsaVerify()
635 …ret = mbedtls_mpi_read_binary(&ecdsa.MBEDTLS_PRIVATE(Q).MBEDTLS_PRIVATE(X), aPublicKey->m8, Ecdsa:… in otPlatCryptoEcdsaVerify()
[all …]
/openthread-latest/third_party/mbedtls/repo/programs/test/
Dbenchmark.c513 rsa, dhm, ecdsa, ecdh; member
603 todo.ecdsa = 1; in main()
1130 if (todo.ecdsa) { in main()
1131 mbedtls_ecdsa_context ecdsa; in main() local
1144 mbedtls_ecdsa_init(&ecdsa); in main()
1146 if (mbedtls_ecdsa_genkey(&ecdsa, curve_info->grp_id, myrand, NULL) != 0) { in main()
1155 mbedtls_ecdsa_write_signature(&ecdsa, MBEDTLS_MD_SHA256, buf, in main()
1160 mbedtls_ecdsa_free(&ecdsa); in main()
1170 mbedtls_ecdsa_init(&ecdsa); in main()
1172 if (mbedtls_ecdsa_genkey(&ecdsa, curve_info->grp_id, myrand, NULL) != 0 || in main()
[all …]
/openthread-latest/third_party/mbedtls/repo/scripts/
Decc-heap.sh80 programs/test/benchmark ecdh ecdsa
/openthread-latest/third_party/mbedtls/repo/programs/pkey/
DCMakeLists.txt15 ecdsa
/openthread-latest/third_party/mbedtls/repo/programs/
DMakefile42 pkey/ecdsa \
185 pkey/ecdsa$(EXEXT): pkey/ecdsa.c $(DEP)
187 $(CC) $(LOCAL_CFLAGS) $(CFLAGS) pkey/ecdsa.c $(LOCAL_LDFLAGS) $(LDFLAGS) -o $@
D.gitignore20 pkey/ecdsa
DREADME.md32 * [`pkey/ecdsa.c`](pkey/ecdsa.c): generates an ECDSA key, signs a fixed message and verifies the si…
/openthread-latest/third_party/mbedtls/repo/tests/suites/
Dtest_suite_random.function7 #include "mbedtls/ecdsa.h"
Dtest_suite_ecdsa.function2 #include "mbedtls/ecdsa.h"
Dtest_suite_ecp.function4 #include "mbedtls/ecdsa.h"
/openthread-latest/third_party/mbedtls/repo/scripts/data_files/
Dquery_config.fmt39 #include "mbedtls/ecdsa.h"
/openthread-latest/third_party/mbedtls/
DBUILD.gn80 "repo/include/mbedtls/ecdsa.h",
189 "repo/library/ecdsa.c",
/openthread-latest/tests/unit/
DCMakeLists.txt214 ot_unit_test(ecdsa)
/openthread-latest/third_party/mbedtls/repo/library/
DMakefile130 ecdsa.o \
DCMakeLists.txt38 ecdsa.c
/openthread-latest/third_party/mbedtls/repo/tests/scripts/
Dall.sh2656 not grep mbedtls_ecdsa_ library/ecdsa.o
2847 not grep mbedtls_ecdsa library/ecdsa.o
2956 not grep mbedtls_ecdsa library/ecdsa.o
2959 grep mbedtls_ecdsa library/ecdsa.o
3039 not grep mbedtls_ecdsa_ library/ecdsa.o
3143 not grep mbedtls_ecdsa_ library/ecdsa.o
3318 not grep mbedtls_ecdsa_ library/ecdsa.o
3421 not grep mbedtls_ecdsa_ library/ecdsa.o
/openthread-latest/src/core/
DBUILD.gn468 "crypto/ecdsa.hpp",
/openthread-latest/third_party/mbedtls/repo/visualc/VS2017/
DmbedTLS.sln53 Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ecdsa", "ecdsa.vcxproj", "{F58142CC-0CC7-0B18-…
/openthread-latest/third_party/mbedtls/repo/docs/proposed/
Dpsa-conditional-inclusion-c.md24 …mbark the `bignum` module and large parts of the `ecp_curves`, `ecp` and `ecdsa` modules. Also the…
/openthread-latest/third_party/mbedtls/repo/docs/
Dpsa-transition.md128 | `ecdsa.h` | `mbedtls_ecdsa_` | [Asymmetric cryptography](#asymmetric-cryptography) |
938 …ormat for ECDSA signatures, not the ASN.1 format; see “[ECDSA signature](#ecdsa-signature)” for mo…
942 …ormat for ECDSA signatures, not the ASN.1 format; see “[ECDSA signature](#ecdsa-signature)” for mo…
946 See also “[Restartable ECDSA signature](#restartable-ecdsa-signature)” for a restartable variant of…
1219 …ble signature interface described in “[Restartable ECDSA signature](#restartable-ecdsa-signature)”.
1259 …gnatures at the time of writing. See “[Restartable ECDSA signature](#restartable-ecdsa-signature)”.
/openthread-latest/third_party/mbedtls/repo/
DChangeLog484 in the ecdsa.h header file. There was a build warning when the
488 MBEDTLS_ECDSA_VERIFY_ALT, causing ecdsa verify to fail. Fixes #7498.
4898 * Fix #include path in ecdsa.h which wasn't accepted by some compilers.