Home
last modified time | relevance | path

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

/mbedtls-3.4.0/library/
Dpsa_crypto_pake.c241 operation->buffer_length = 0; in psa_pake_setup()
557 &operation->buffer_length, in psa_pake_output_internal()
571 &operation->buffer_length, in psa_pake_output_internal()
603 if( operation->buffer_offset + length > operation->buffer_length ) in psa_pake_output_internal()
623 operation->buffer_length = 0; in psa_pake_output_internal()
777 memcpy( operation->buffer + operation->buffer_length, in psa_pake_input_internal()
779 operation->buffer_length += sizeof( ecparameters ); in psa_pake_input_internal()
783 operation->buffer[operation->buffer_length] = (uint8_t) input_length; in psa_pake_input_internal()
784 operation->buffer_length += 1; in psa_pake_input_internal()
787 memcpy( operation->buffer + operation->buffer_length, in psa_pake_input_internal()
[all …]
Dpsa_crypto_core.h230 size_t buffer_length );
Dpsa_crypto.c533 size_t buffer_length ) in psa_allocate_buffer_to_slot() argument
538 slot->key.data = mbedtls_calloc( 1, buffer_length ); in psa_allocate_buffer_to_slot()
542 slot->key.bytes = buffer_length; in psa_allocate_buffer_to_slot()
/mbedtls-3.4.0/tests/suites/
Dtest_suite_psa_crypto_pake.function93 size_t buffer_length = (
122 ASSERT_ALLOC( buffer0, buffer_length );
123 ASSERT_ALLOC( buffer1, buffer_length );
Dtest_suite_psa_crypto.function739 size_t buffer_length = (
769 ASSERT_ALLOC( buffer0, buffer_length );
770 ASSERT_ALLOC( buffer1, buffer_length );
2153 size_t buffer_length;
2172 buffer_length = PSA_ASYMMETRIC_ENCRYPT_OUTPUT_SIZE( key_type, key_bits,
2174 ASSERT_ALLOC( buffer, buffer_length );
2179 buffer, buffer_length,
2187 if( buffer_length != 0 )
2188 memset( buffer, 0, buffer_length );
2190 buffer, buffer_length,
[all …]
/mbedtls-3.4.0/include/psa/
Dcrypto_extra.h1927 size_t MBEDTLS_PRIVATE(buffer_length);