mirror of
https://github.com/yuzu-mirror/mbedtls.git
synced 2026-03-26 23:26:28 +01:00
Change coding style to fix multi lines into one line
Signed-off-by: Xiaokang Qian <xiaokang.qian@arm.com>
This commit is contained in:
parent
254f94bb43
commit
6824bad4fc
|
|
@ -1595,12 +1595,10 @@ void ecp_mod_read_write(char *input_A, int id, int ctype)
|
|||
* the destination mod residue, compare the two mod residues.
|
||||
* Firstly test little endian write and read */
|
||||
TEST_EQUAL(0, mbedtls_mpi_mod_write(&rA, &m, (unsigned char *) bufx,
|
||||
bytes,
|
||||
MBEDTLS_MPI_MOD_EXT_REP_LE));
|
||||
bytes, MBEDTLS_MPI_MOD_EXT_REP_LE));
|
||||
|
||||
TEST_EQUAL(0, mbedtls_mpi_mod_read(&rX, &m, (unsigned char *) bufx,
|
||||
bytes,
|
||||
MBEDTLS_MPI_MOD_EXT_REP_LE));
|
||||
bytes, MBEDTLS_MPI_MOD_EXT_REP_LE));
|
||||
|
||||
TEST_EQUAL(limbs, rX.limbs);
|
||||
ASSERT_COMPARE(rA.p, bytes, rX.p, bytes);
|
||||
|
|
|
|||
Loading…
Reference in a new issue