mirror of
https://github.com/wolfSSL/wolfssl.git
synced 2025-08-02 12:14:38 +02:00
remove hard tab
This commit is contained in:
@@ -3990,20 +3990,20 @@ static void bench_rsa_helper(int doAsync, RsaKey rsaKey[BENCH_MAX_PENDING],
|
|||||||
DECLARE_VAR_INIT(message, byte, len, messageStr, HEAP_HINT);
|
DECLARE_VAR_INIT(message, byte, len, messageStr, HEAP_HINT);
|
||||||
#endif
|
#endif
|
||||||
#if !defined(WOLFSSL_MDK5_COMPLv5)
|
#if !defined(WOLFSSL_MDK5_COMPLv5)
|
||||||
/* MDK5 compiler regard this as a executable statement, and does not allow declarations after the line. */
|
/* MDK5 compiler regard this as a executable statement, and does not allow declarations after the line. */
|
||||||
DECLARE_ARRAY_DYNAMIC_DEC(enc, byte, BENCH_MAX_PENDING, rsaKeySz, HEAP_HINT);
|
DECLARE_ARRAY_DYNAMIC_DEC(enc, byte, BENCH_MAX_PENDING, rsaKeySz, HEAP_HINT);
|
||||||
#else
|
#else
|
||||||
byte* enc[BENCH_MAX_PENDING];
|
byte* enc[BENCH_MAX_PENDING];
|
||||||
int idxenc;
|
int idxenc;
|
||||||
#endif
|
#endif
|
||||||
#if !defined(WOLFSSL_RSA_VERIFY_INLINE) && \
|
#if !defined(WOLFSSL_RSA_VERIFY_INLINE) && \
|
||||||
!defined(WOLFSSL_RSA_PUBLIC_ONLY)
|
!defined(WOLFSSL_RSA_PUBLIC_ONLY)
|
||||||
#if !defined(WOLFSSL_MDK5_COMPLv5)
|
#if !defined(WOLFSSL_MDK5_COMPLv5)
|
||||||
/* MDK5 compiler regard this as a executable statement, and does not allow declarations after the line. */
|
/* MDK5 compiler regard this as a executable statement, and does not allow declarations after the line. */
|
||||||
DECLARE_ARRAY_DYNAMIC_DEC(out, byte, BENCH_MAX_PENDING, rsaKeySz, HEAP_HINT);
|
DECLARE_ARRAY_DYNAMIC_DEC(out, byte, BENCH_MAX_PENDING, rsaKeySz, HEAP_HINT);
|
||||||
#else
|
#else
|
||||||
int idxout;
|
int idxout;
|
||||||
byte* out[BENCH_MAX_PENDING];
|
byte* out[BENCH_MAX_PENDING];
|
||||||
#endif
|
#endif
|
||||||
#else
|
#else
|
||||||
byte* out[BENCH_MAX_PENDING];
|
byte* out[BENCH_MAX_PENDING];
|
||||||
|
Reference in New Issue
Block a user