Home
last modified time | relevance | path

Searched refs:md (Results 1 – 25 of 63) sorted by relevance

123

/openthread-latest/third_party/mbedtls/repo/docs/proposed/
DMakefile6 psa-conditional-inclusion-c.md \
7 psa-driver-developer-guide.md \
8 psa-driver-integration-guide.md \
9 psa-driver-interface.md \
12 html: $(all_markdown:.md=.html)
13 pdf: $(all_markdown:.md=.pdf)
17 .SUFFIXES: .md .html .pdf
19 .md.html:
21 .md.pdf:
Dpsa-driver-wrappers-codegen-migration-guide.md5 …r multiple minor revs of version 1.0, after which this will be merged into psa-driver-interface.md.
7 …TLS, see our [PSA Cryptoprocessor driver development examples](../psa-driver-example-and-guide.md).
37 Please refer to psa-driver-interface.md for information on how a driver schema can be written.
/openthread-latest/third_party/mbedtls/repo/docs/architecture/
DMakefile5 all_markdown = $(wildcard *.md */*.md)
7 html: $(all_markdown:.md=.html)
8 pdf: $(all_markdown:.md=.pdf)
12 .SUFFIXES: .md .html .pdf
14 .md.html:
16 .md.pdf:
/openthread-latest/third_party/mbedtls/repo/library/
Dhkdf.c16 int mbedtls_hkdf(const mbedtls_md_info_t *md, const unsigned char *salt, in mbedtls_hkdf() argument
24 ret = mbedtls_hkdf_extract(md, salt, salt_len, ikm, ikm_len, prk); in mbedtls_hkdf()
27 ret = mbedtls_hkdf_expand(md, prk, mbedtls_md_get_size(md), in mbedtls_hkdf()
36 int mbedtls_hkdf_extract(const mbedtls_md_info_t *md, in mbedtls_hkdf_extract() argument
50 hash_len = mbedtls_md_get_size(md); in mbedtls_hkdf_extract()
60 return mbedtls_md_hmac(md, salt, salt_len, ikm, ikm_len, prk); in mbedtls_hkdf_extract()
63 int mbedtls_hkdf_expand(const mbedtls_md_info_t *md, const unsigned char *prk, in mbedtls_hkdf_expand() argument
80 hash_len = mbedtls_md_get_size(md); in mbedtls_hkdf_expand()
107 if ((ret = mbedtls_md_setup(&ctx, md, 1)) != 0) { in mbedtls_hkdf_expand()
/openthread-latest/third_party/mbedtls/repo/tests/suites/
Dtest_suite_hkdf.function20 const mbedtls_md_info_t *md = mbedtls_md_info_from_type(md_alg);
21 TEST_ASSERT(md != NULL);
25 ret = mbedtls_hkdf(md, salt->x, salt->len, ikm->x, ikm->len,
49 const mbedtls_md_info_t *md = mbedtls_md_info_from_type(md_alg);
50 TEST_ASSERT(md != NULL);
52 output_prk_len = mbedtls_md_get_size(md);
55 ret = mbedtls_hkdf_extract(md, salt->x, salt->len,
79 const mbedtls_md_info_t *md = mbedtls_md_info_from_type(md_alg);
80 TEST_ASSERT(md != NULL);
84 TEST_ASSERT(prk->len == mbedtls_md_get_size(md));
[all …]
Dtest_suite_pkcs12.function73 void pkcs12_pbe_encrypt(int params_tag, int cipher, int md, data_t *params_hex, data_t *pw,
80 mbedtls_md_type_t md_alg = (mbedtls_md_type_t) md;
128 void pkcs12_pbe_decrypt(int params_tag, int cipher, int md, data_t *params_hex, data_t *pw,
135 mbedtls_md_type_t md_alg = (mbedtls_md_type_t) md;
Dtest_suite_md.function2 #include "mbedtls/md.h"
8 #define MD_PSA(md, psa) \
9 TEST_EQUAL(mbedtls_md_psa_alg_from_type(md), psa); \
10 TEST_EQUAL(mbedtls_md_type_from_psa_alg(psa), md);
152 TEST_ASSERT(mbedtls_md_info_from_string("no such md") == NULL);
/openthread-latest/third_party/mbedtls/repo/
DBUGS.md10 [maintained branch](BRANCHES.md): `main`, `development`,
16 [`SECURITY.md`](SECURITY.md). If not, …
20 how to do something with Mbed TLS, please see [`SUPPORT.md`](SUPPORT.md) for available documentatio…
DSECURITY.md18 Only the maintained branches, as listed in [`BRANCHES.md`](BRANCHES.md),
134 Guide](docs/architecture/alternative-implementations.md) for more information.
143 Policy](https://github.com/hacl-star/hacl-star/blob/main/SECURITY.md).)
DSUPPORT.md7 README](README.md#documentation);
DREADME.md30 For other sources of documentation, see the [SUPPORT](SUPPORT.md) document.
237 …ded example programs for a lot of different features and uses in [`programs/`](programs/README.md).
253 …frastructure repository](https://github.com/Mbed-TLS/mbedtls-test/blob/main/README.md#quick-start).
298 …yptography for most operations regardless of this option. See `docs/use-psa-crypto.md` for details.
304 Please see the [PSA driver example and guide](docs/psa-driver-example-and-guide.md) for information…
314 …icense and Copyright' section in the contributing guidelines](CONTRIBUTING.md#License-and-Copyrigh…
326 … from the community. Please see the [contributing guidelines](CONTRIBUTING.md) for details on how …
331 …ed-tls-security@lists.trustedfirmware.org>. For more information, see [`SECURITY.md`](SECURITY.md).
333 * Please see [`SUPPORT.md`](SUPPORT.md) for other channels for discussion and support about Mbed TL…
DCONTRIBUTING.md33 …lopment branch and in LTS (Long Term Support) branches, as described in [BRANCHES.md](BRANCHES.md).
54 of BRANCHES.md](BRANCHES.md#current-branches).
82 1. A [ChangeLog](https://github.com/Mbed-TLS/mbedtls/blob/development/ChangeLog.d/00README.md) entr…
/openthread-latest/third_party/mbedtls/repo/include/mbedtls/
Dhkdf.h56 int mbedtls_hkdf(const mbedtls_md_info_t *md, const unsigned char *salt,
85 int mbedtls_hkdf_extract(const mbedtls_md_info_t *md,
116 int mbedtls_hkdf_expand(const mbedtls_md_info_t *md, const unsigned char *prk,
/openthread-latest/third_party/mbedtls/repo/tests/data_files/
DMakefile52 …_file_rsa) password=$(test_ca_pwd_rsa) subject_name="C=NL,O=PolarSSL,CN=PolarSSL Test CA" md=SHA256
56 …_pwd=$(test_ca_pwd_rsa) not_before=20190210144400 not_after=20290210144400 md=SHA1 version=3 outpu…
71 not_before=20190210144400 not_after=20290210144400 md=SHA1 version=3 output_file=$@
75 …_pwd=$(test_ca_pwd_rsa) not_before=20190210144400 not_after=20290210144400 md=SHA1 version=3 outpu…
83 …_pwd=$(test_ca_pwd_rsa) not_before=20190210144400 not_after=20290210144400 md=SHA256 version=3 out…
193 subject_name="C=NL,O=PolarSSL,CN=Polarssl Test EC CA" md=SHA256
202 md=SHA256 version=3 output_file=$@
215 not_before=20290210144400 not_after=20390210144400 md=SHA256 version=3 output_file=$@
264 …@ filename=$(test_ca_key_file_ec) subject_name="C=NL, O=PolarSSL, CN=Polarssl Test EC CA" md=SHA256
320 …sa_pkcs1_1024_clear.pem not_before=20190210144406 not_after=20290210144406 md=SHA1 version=3 outpu…
[all …]
/openthread-latest/src/cli/
DREADME_COMMISSIONING.md5 … a Thread network. This process is done under guidance of a [Commissioner](README_COMMISSIONER.md).
120 - [Commissioner CLI Reference](README_COMMISSIONER.md)
121 - [Joiner CLI Reference](README_JOINER.md)
DREADME_JOINER.md5 See [README_COMMISSIONING.md](README_COMMISSIONING.md).
DREADME_COMMISSIONER.md5 …ng network configuration parameters ([Operational Datasets](README_DATASET.md)) or sending specifi…
9 See [README_COMMISSIONING.md](README_COMMISSIONING.md).
/openthread-latest/tests/toranj/
DREADME.md21 - [`toranj-cli` guide](README_CLI.md)
22 - [`toranj-ncp` guide](README_NCP.md)
/openthread-latest/examples/apps/cli/
DREADME.md124 See the [OpenThread CLI Reference README.md](../../../src/cli/README.md) to explore more.
/openthread-latest/tools/otci/
Dpyproject.toml12 readme = "README.md"
/openthread-latest/
D.gitattributes8 *.md text
/openthread-latest/tools/tcat_ble_client/
DREADME.md68 See [GENERATING_CERTIFICATES.md](GENERATING_CERTIFICATES.md) for details on generating own certific…
/openthread-latest/third_party/mbedtls/repo/docs/architecture/psa-migration/
Dmd-cipher-dispatch.md60 …ncies, for example the duplication between the implementations of HMAC in `md.c` and in `psa_crypt…
118 * ECDSA (HMAC\_DRBG; `md.h` exposed through API)
119 * ECJPAKE (hashes via MD-light; `md.h` exposed through API)
121 * HKDF (HMAC via `md.h`; `md.h` exposed through API)
122 * HMAC\_DRBG (hashes and HMAC via `md.h`; `md.h` exposed through API)
124 * PKCS5 (HMAC via `md.h`; `md.h` exposed through API)
126 * RSA (hash via MD-light for PSS and OAEP; `md.h` exposed through API)
246 …Pass `MBEDTLS_MD_SHA256` and `md` will dispatch to the legacy code, pass a new constant `MBEDTLS_M…
284 …ors available to legacy callers that call any legacy hash interface, e.g. `md.h` or `shaX.h`. Ther…
310 The existing interface in `md.h` is close to what we want, but not perfect. What's wrong with it?
[all …]
/openthread-latest/third_party/mbedtls/repo/docs/
Dpsa-driver-example-and-guide.md5 …b.com/Mbed-TLS/mbedtls/blob/development/docs/proposed/psa-driver-interface.md) describes how drive…
6md) Guide describes the deliverables for writing a driver that can be used with Mbed TLS, and the …
20 …b.com/Mbed-TLS/mbedtls/blob/development/docs/proposed/psa-driver-interface.md#lifetimes-and-locati…
39 …developer-guide.md) and [integration](https://github.com/Mbed-TLS/mbedtls/blob/development/docs/pr…
149 …of `MBEDTLS_PSA_P256M_DRIVER_ENABLED` and [`driver-only-builds.md`](driver-only-builds.md) for mor…
/openthread-latest/third_party/mbedtls/repo/.github/
Dpull_request_template.md19 …g guidelines](https://github.com/Mbed-TLS/mbedtls/blob/development/CONTRIBUTING.md), especially the

123