mirror of
https://github.com/strongswan/strongswan.git
synced 2025-10-04 00:00:14 -04:00
changed TRUE/FALSE to 1/0
This commit is contained in:
parent
3bc613d01d
commit
3783980edb
@ -110,7 +110,7 @@ static void decrypt(private_blowfish_crypter_t *this, chunk_t data, chunk_t iv,
|
||||
}
|
||||
in = data.ptr;
|
||||
|
||||
BF_cbc_encrypt(in, out, data.len, &this->schedule, iv.ptr, FALSE);
|
||||
BF_cbc_encrypt(in, out, data.len, &this->schedule, iv.ptr, 0);
|
||||
}
|
||||
|
||||
/**
|
||||
@ -132,7 +132,7 @@ static void encrypt (private_blowfish_crypter_t *this, chunk_t data, chunk_t iv,
|
||||
}
|
||||
in = data.ptr;
|
||||
|
||||
BF_cbc_encrypt(in, out, data.len, &this->schedule, iv.ptr, TRUE);
|
||||
BF_cbc_encrypt(in, out, data.len, &this->schedule, iv.ptr, 1);
|
||||
}
|
||||
|
||||
/**
|
||||
|
Loading…
x
Reference in New Issue
Block a user