Home
last modified time | relevance | path

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

/trusted-firmware-m-3.4.0/platform/ext/target/stm/common/hal/accelerator/
Drsa_alt.c125 size_t i, op_len; in rsa_pka_arithmetic_mul() local
130 op_len = A_len; in rsa_pka_arithmetic_mul()
132 input_A = mbedtls_calloc( 1, op_len ); in rsa_pka_arithmetic_mul()
135 for( i = op_len/4 ; i > 0; i-- ) in rsa_pka_arithmetic_mul()
136 GET_UINT32_BE( input_A[( op_len/4 ) - i], A, 4*(i-1) ); in rsa_pka_arithmetic_mul()
138 input_B = mbedtls_calloc( 1, op_len ); in rsa_pka_arithmetic_mul()
141 for( i = op_len/4 ; i > 0; i-- ) in rsa_pka_arithmetic_mul()
142 GET_UINT32_BE( input_B[( op_len/4 ) - i], B, 4*(i-1) ); in rsa_pka_arithmetic_mul()
144 in.size = op_len/4; in rsa_pka_arithmetic_mul()
171 mbedtls_platform_zeroize( input_A, op_len ); in rsa_pka_arithmetic_mul()
[all …]