summaryrefslogtreecommitdiff
path: root/src/cipher.c
diff options
context:
space:
mode:
authorChristian Pointner <equinox@anytun.org>2009-01-02 20:01:35 +0000
committerChristian Pointner <equinox@anytun.org>2009-01-02 20:01:35 +0000
commit2e07c29960c20d74814a94b567fda782b3f7c5d5 (patch)
tree87658650e335519fa7fc47a0ab16a4735d742cae /src/cipher.c
parentsome improvements in key derivation (diff)
changed to anytun compatible version
Diffstat (limited to 'src/cipher.c')
-rw-r--r--src/cipher.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/cipher.c b/src/cipher.c
index 22fba9a..d400ca8 100644
--- a/src/cipher.c
+++ b/src/cipher.c
@@ -239,10 +239,10 @@ buffer_t cipher_aesctr_calc_ctr(cipher_t* c, key_derivation_t* kd, seq_nr_t seq_
mpz_mul_2exp(ctr, ctr, 16);
result.buf_ = mpz_export(NULL, (size_t*)&result.length_, 1, 1, 0, 0, ctr);
- if(faked_msb) {
- c->salt_.buf_[0] = 0;
- result.buf_[0] = 0;
- }
+/* if(faked_msb) { */
+/* c->salt_.buf_[0] = 0; */
+/* result.buf_[0] = 0; */
+/* } */
mpz_clear(ctr);
mpz_clear(sid_mux);