remove spaces before tabs at the beginning of lines (^( )+\t)

This commit is contained in:
Martin Willi
2009-09-04 15:02:11 +02:00
parent b9b8a98f47
commit 7b3814f75d
54 changed files with 174 additions and 174 deletions
@@ -314,7 +314,7 @@ static bool encrypt_(private_gmp_rsa_public_key_t *this, chunk_t plain,
chunk_t em;
u_char *pos;
int padding, i;
rng_t *rng;
rng_t *rng;
rng = lib->crypto->create_rng(lib->crypto, RNG_WEAK);
if (rng == NULL)
@@ -325,7 +325,7 @@ static bool encrypt_(private_gmp_rsa_public_key_t *this, chunk_t plain,
/* number of pseudo-random padding octets */
padding = this->k - plain.len - 3;
if (padding < MIN_PS_PADDING)
if (padding < MIN_PS_PADDING)
{
DBG1("pseudo-random padding must be at least %d octets", MIN_PS_PADDING);
return FALSE;