aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/libstrongswan/plugins/blowfish/blowfish_crypter.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libstrongswan/plugins/blowfish/blowfish_crypter.c b/src/libstrongswan/plugins/blowfish/blowfish_crypter.c
index e64f6f23d..b70ea22c1 100644
--- a/src/libstrongswan/plugins/blowfish/blowfish_crypter.c
+++ b/src/libstrongswan/plugins/blowfish/blowfish_crypter.c
@@ -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);
}
/**