Commit 0546db3e authored by Andy Polyakov's avatar Andy Polyakov Committed by Matt Caswell
Browse files

bn/bn_exp.c: make it indent-friendly.



Reviewed-by: default avatarTim Hudson <tjh@openssl.org>
parent 9d51824b
Loading
Loading
Loading
Loading
+7 −7
Original line number Diff line number Diff line
@@ -904,14 +904,14 @@ int BN_mod_exp_mont_consttime(BIGNUM *rr, const BIGNUM *a, const BIGNUM *p,
    else
#endif
#if defined(OPENSSL_BN_ASM_MONT5)
    if (window==5 && top>1)
	{
	/* This optimization uses ideas from http://eprint.iacr.org/2011/239,
	 * specifically optimization of cache-timing attack countermeasures
	 * and pre-computation optimization. */

	/* Dedicated window==4 case improves 512-bit RSA sign by ~15%, but as
	 * 512-bit RSA is hardly relevant, we omit it to spare size... */ 
    if (window==5 && top>1)
	{
	void bn_mul_mont_gather5(BN_ULONG *rp,const BN_ULONG *ap,
			const void *table,const BN_ULONG *np,
			const BN_ULONG *n0,int num,int power);