Home
last modified time | relevance | path

Searched refs:inputs (Results 1 – 6 of 6) sorted by relevance

/optee_os/lib/libmbedtls/mbedtls/library/
H A Dpsa_crypto_pake.c156 const psa_crypto_driver_pake_inputs_t *inputs) in mbedtls_psa_pake_setup() argument
164 status = psa_crypto_driver_pake_get_password_len(inputs, &password_len); in mbedtls_psa_pake_setup()
169 status = psa_crypto_driver_pake_get_user_len(inputs, &user_len); in mbedtls_psa_pake_setup()
174 status = psa_crypto_driver_pake_get_peer_len(inputs, &peer_len); in mbedtls_psa_pake_setup()
179 status = psa_crypto_driver_pake_get_cipher_suite(inputs, &cipher_suite); in mbedtls_psa_pake_setup()
202 status = psa_crypto_driver_pake_get_password(inputs, operation->password, in mbedtls_psa_pake_setup()
208 status = psa_crypto_driver_pake_get_user(inputs, user, in mbedtls_psa_pake_setup()
214 status = psa_crypto_driver_pake_get_peer(inputs, peer, in mbedtls_psa_pake_setup()
267 (void) inputs; in mbedtls_psa_pake_setup()
H A Dpsa_crypto.c8582 const psa_crypto_driver_pake_inputs_t *inputs, in psa_crypto_driver_pake_get_password_len() argument
8585 if (inputs->password_len == 0) { in psa_crypto_driver_pake_get_password_len()
8589 *password_len = inputs->password_len; in psa_crypto_driver_pake_get_password_len()
8595 const psa_crypto_driver_pake_inputs_t *inputs, in psa_crypto_driver_pake_get_password() argument
8598 if (inputs->password_len == 0) { in psa_crypto_driver_pake_get_password()
8602 if (buffer_size < inputs->password_len) { in psa_crypto_driver_pake_get_password()
8606 memcpy(buffer, inputs->password, inputs->password_len); in psa_crypto_driver_pake_get_password()
8607 *buffer_length = inputs->password_len; in psa_crypto_driver_pake_get_password()
8613 const psa_crypto_driver_pake_inputs_t *inputs, in psa_crypto_driver_pake_get_user_len() argument
8616 if (inputs->user_len == 0) { in psa_crypto_driver_pake_get_user_len()
[all …]
H A Dpsa_crypto_pake.h38 const psa_crypto_driver_pake_inputs_t *inputs);
H A Dpsa_crypto_driver_wrappers.h2741 const psa_crypto_driver_pake_inputs_t *inputs ) in psa_driver_wrapper_pake_setup() argument
2746 PSA_KEY_LIFETIME_GET_LOCATION( psa_get_key_lifetime( &inputs->attributes ) ); in psa_driver_wrapper_pake_setup()
2758 inputs ); in psa_driver_wrapper_pake_setup()
2768 inputs ); in psa_driver_wrapper_pake_setup()
/optee_os/lib/libmbedtls/mbedtls/include/psa/
H A Dcrypto_extra.h1109 uint8_t MBEDTLS_PRIVATE(inputs);
1148 struct psa_crypto_driver_pake_inputs_s MBEDTLS_PRIVATE(inputs);
1313 const psa_crypto_driver_pake_inputs_t *inputs,
1329 const psa_crypto_driver_pake_inputs_t *inputs,
1343 const psa_crypto_driver_pake_inputs_t *inputs,
1357 const psa_crypto_driver_pake_inputs_t *inputs,
1375 const psa_crypto_driver_pake_inputs_t *inputs,
1393 const psa_crypto_driver_pake_inputs_t *inputs,
1407 const psa_crypto_driver_pake_inputs_t *inputs,
/optee_os/lib/libmbedtls/mbedtls/
H A DChangeLog95 * Fix mbedtls_base64_decode() on inputs that did not have the correct
98 rejected. Furthermore, before, on inputs with too few equal signs, the
537 The PSA core now protects against modification of inputs or exposure
617 * Fully support arbitrary overlap between inputs and outputs of PSA
1800 better describe the inputs to these functions and their possible values.
2121 mbedtls_cipher_update()) no longer requires the size of partial inputs to
2221 about missing inputs.
2233 * Disallow inputs of length different from the corresponding hash when
2956 * Key derivation inputs in the PSA API can now either come from a key object
3194 used with negative inputs. Found by Guido Vranken in #2404. Credit to
[all …]