Home
last modified time | relevance | path

Searched refs:user (Results 1 – 25 of 47) sorted by relevance

12

/openthread-latest/script/
Dgit-tool42 git config user.name || git config user.name 'OpenThread Git'
43 git config user.email || git config user.email 'git@openthread'
/openthread-latest/third_party/mbedtls/repo/library/
Dpsa_crypto_pake.c160 uint8_t *peer = NULL, *user = NULL; in mbedtls_psa_pake_setup() local
190 user = mbedtls_calloc(1, user_len); in mbedtls_psa_pake_setup()
191 if (user == NULL) { in mbedtls_psa_pake_setup()
208 status = psa_crypto_driver_pake_get_user(inputs, user, in mbedtls_psa_pake_setup()
240 if (memcmp(user, jpake_client_id, actual_user_len) == 0 && in mbedtls_psa_pake_setup()
244 if (memcmp(user, jpake_server_id, actual_user_len) == 0 && in mbedtls_psa_pake_setup()
261 mbedtls_free(user); mbedtls_free(peer); in mbedtls_psa_pake_setup()
272 mbedtls_free(user); mbedtls_free(peer); in mbedtls_psa_pake_setup()
Dpsa_crypto.c8348 memcpy(user_id, inputs->user, inputs->user_len); in psa_crypto_driver_pake_get_user()
8514 operation->data.inputs.user = mbedtls_calloc(1, user_id_len); in psa_pake_set_user()
8515 if (operation->data.inputs.user == NULL) { in psa_pake_set_user()
8522 memcpy(operation->data.inputs.user, user_id, user_id_len); in psa_pake_set_user()
8665 mbedtls_free(inputs.user); in psa_pake_complete_inputs()
8975 if (operation->data.inputs.user != NULL) { in psa_pake_abort()
8976 mbedtls_free(operation->data.inputs.user); in psa_pake_abort()
/openthread-latest/third_party/mbedtls/repo/docs/proposed/
Dpsa-driver-wrappers-codegen-migration-guide.md5 It is meant to give the library user migration guidelines while the Mbed TLS project tides over mul…
22 ### What's critical for a migrating user
33 …support is yet to come in, if the library user sees a need to patch psa_crypto_driver_wrappers.h f…
40 The JSON file 'driverlist.json' is meant to be edited by the user to reflect the drivers one wants …
/openthread-latest/third_party/mbedtls/repo/tests/suites/
Dtest_suite_psa_crypto_pake.data41 PSA PAKE: set empty user
49 PSA PAKE: set invalid user
57 PSA PAKE: user already set
65 PSA PAKE: user and peer both servers
69 PSA PAKE: user and peer both clients
239 PSA PAKE: input getters: user
Dtest_suite_psa_crypto_pake.function63 /* The only two JPAKE user/peer identifiers supported for the time being. */
610 uint8_t *user = (uint8_t *) user_arg;
637 TEST_EQUAL(psa_pake_set_user(&operation, user, user_len),
668 SETUP_ALWAYS_CHECK_STEP(psa_pake_set_user(&operation, user, user_len),
674 SETUP_CONDITIONAL_CHECK_STEP(psa_pake_set_user(&operation, user, user_len),
1084 uint8_t user_ret[20] = { 0 }; // max user length is 20 bytes
1099 uint8_t *user = (uint8_t *) users[i];
1114 PSA_ASSERT(psa_pake_set_user(&operation, user, user_len));
1133 TEST_MEMORY_COMPARE(user_ret, buffer_len_ret, user, user_len);
Dtest_suite_lmots.data26 # pip3 install --user hsslms==0.1.2
51 # pip3 install --user hsslms==0.1.2
74 # pip3 install --user hsslms==0.1.2
Dtest_suite_lms.data23 # * pip3 install --user pyhsslms
63 # * pip3 install --user pyhsslms
147 # pip3 install --user hsslms==0.1.2
170 # pip3 install --user hsslms==0.1.2
/openthread-latest/third_party/mbedtls/repo/visualc/VS2017/
D.gitignore10 /*.vcxproj.user
/openthread-latest/third_party/mbedtls/repo/tests/scripts/
Ddocker_env.sh82 --user "$(id -u):$(id -g)" \
/openthread-latest/third_party/mbedtls/repo/
DSECURITY.md33 Mbed TLS aims to fully protect against remote attacks and to enable the user
84 a user application's threat model, they need to be mitigated by the platform.
92 attacks. If local fault injection attacks are present in a use case or a user
102 physical attacks are present in a use case or a user application's threat
DCONTRIBUTING.md33 …d not be necessary for a user to make any changes to their own code to work with a newer version o…
/openthread-latest/third_party/mbedtls/repo/programs/test/cmake_package/
DCMakeLists.txt4 # Simulate configuring and building Mbed TLS as the user might do it. We'll
/openthread-latest/third_party/mbedtls/repo/programs/test/cmake_package_install/
DCMakeLists.txt4 # Simulate configuring and building Mbed TLS as the user might do it. We'll
/openthread-latest/tools/tcat_ble_client/
DREADME.md48 …the first matching device discovered and set up a secure TLS channel. The user is then presented w…
/openthread-latest/tools/gerrit/
DREADME.md41 412f9740b [tlv] remove unnecessary user-specified constructor (#2940)
/openthread-latest/third_party/mbedtls/repo/docs/
Duse-psa-crypto.md2 `MBEDTLS_USE_PSA_CRYPTO` from a user's perspective.
62 `MBEDTLS_USE_PSA_CRYPTO` is that the user promises to call `psa_crypto_init()`
Dtls13-early-data.md73 specifically by the user of write_early_data(). A fresh SSL context (typically
/openthread-latest/third_party/mbedtls/repo/ChangeLog.d/
D00README.md8 Write a changelog entry if there is a user-visible change. This includes:
/openthread-latest/
DREADME.md34 All end-user documentation and guides are located at [openthread.io](https://openthread.io). If you…
45 > Note: For users in China, end-user documentation is available at [openthread.google.cn](https://o…
/openthread-latest/third_party/mbedtls/repo/include/psa/
Dcrypto_extra.h1782 uint8_t *MBEDTLS_PRIVATE(user);
/openthread-latest/third_party/mbedtls/repo/docs/architecture/psa-migration/
Dmd-cipher-dispatch.md18 #### Backward compatibility user story
24 #### Interface design user story
32 #### Hardware accelerator vendor user stories
42 #### Maintainer user stories
240 * When called from user code, it must call the built-in hash implementation if PSA is not available…
Dstrategy.md56 `MBEDTLS_PSA_CRYPTO_EXTERNAL_RNG` as it requires a user-provided RNG
376 The role of the PK/Cipher/MD APIs in user migration
443 It should be easy to provide the user with a bunch of `#define`s for algorithm
/openthread-latest/doc/
DDoxyfile.in182 # The STRIP_FROM_PATH tag can be used to strip a user-defined part of the path.
195 # The STRIP_FROM_INC_PATH tag can be used to strip a user-defined part of the
265 # documentation, which will result in a user-defined paragraph with heading
1101 # The HTML_HEADER tag can be used to specify a user-defined HTML header file for
1121 # The HTML_FOOTER tag can be used to specify a user-defined HTML footer for each
1131 # The HTML_STYLESHEET tag can be used to specify a user-defined cascading style
1143 # The HTML_EXTRA_STYLESHEET tag can be used to specify an additional user-
1211 # shown in the various tree structured indices initially; the user can expand
1684 # Note: Only use a user-defined header if you know what you are doing! The
1698 # Note: Only use a user-defined footer if you know what you are doing!
[all …]
/openthread-latest/third_party/mbedtls/repo/docs/architecture/testing/
Dpsa-storage-format-testing.md15 The goal of storage format stability testing is: as a user of Mbed TLS, I want to store a key under…

12