Searched refs:mpi_dest (Results 1 – 1 of 1) sorted by relevance
144 mbedtls_mpi mpi_dest; in TEE_BigIntConvertFromOctetString() local146 get_mpi(&mpi_dest, NULL); in TEE_BigIntConvertFromOctetString()148 if (mbedtls_mpi_read_binary(&mpi_dest, buffer, bufferLen)) in TEE_BigIntConvertFromOctetString()154 mpi_dest.s = -1; in TEE_BigIntConvertFromOctetString()157 res = copy_mpi_to_bigint(&mpi_dest, dest); in TEE_BigIntConvertFromOctetString()159 mbedtls_mpi_free(&mpi_dest); in TEE_BigIntConvertFromOctetString()278 mbedtls_mpi mpi_dest; in TEE_BigIntShiftRight() local281 get_mpi(&mpi_dest, dest); in TEE_BigIntShiftRight()284 MPI_CHECK(mbedtls_mpi_shift_r(&mpi_dest, bits)); in TEE_BigIntShiftRight()290 if (mbedtls_mpi_size(&mpi_dest) >= mbedtls_mpi_size(&mpi_op)) { in TEE_BigIntShiftRight()[all …]