summaryrefslogtreecommitdiff
path: root/src/cipher.cpp
diff options
context:
space:
mode:
authorChristian Pointner <equinox@anytun.org>2009-01-15 13:14:35 +0000
committerChristian Pointner <equinox@anytun.org>2009-01-15 13:14:35 +0000
commit1c516cc0a342ae9393dae7f94393f5f7107cf1e2 (patch)
tree8228061f9affefd1d87a3501319caf338e83fc4c /src/cipher.cpp
parentadded key store capability (diff)
removed useless buf variable @ some log messages
Diffstat (limited to 'src/cipher.cpp')
-rw-r--r--src/cipher.cpp6
1 files changed, 0 insertions, 6 deletions
diff --git a/src/cipher.cpp b/src/cipher.cpp
index eb958ad..c18dcdb 100644
--- a/src/cipher.cpp
+++ b/src/cipher.cpp
@@ -93,8 +93,6 @@ void AesIcmCipher::init(u_int16_t key_length)
case 192: algo = GCRY_CIPHER_AES192; break;
case 256: algo = GCRY_CIPHER_AES256; break;
default: {
- char buf[STERROR_TEXT_MAX];
- buf[0] = 0;
cLog.msg(Log::PRIO_CRIT) << "AesIcmCipher::AesIcmCipher: cipher key length of " << key_length << " Bits is not supported";
return;
}
@@ -159,8 +157,6 @@ void AesIcmCipher::calc(KeyDerivation& kd, kd_dir_t dir, u_int8_t* in, u_int32_t
#ifdef USE_SSL_CRYPTO
int ret = AES_set_encrypt_key(key_.getBuf(), key_.getLength()*8, &aes_key_);
if(ret) {
- char buf[STERROR_TEXT_MAX];
- buf[0] = 0;
cLog.msg(Log::PRIO_ERR) << "AesIcmCipher: Failed to set cipher ssl key (code: " << ret << ")";
return;
}
@@ -194,8 +190,6 @@ void AesIcmCipher::calc(KeyDerivation& kd, kd_dir_t dir, u_int8_t* in, u_int32_t
}
#else
if(CTR_LENGTH != AES_BLOCK_SIZE) {
- char buf[STERROR_TEXT_MAX];
- buf[0] = 0;
cLog.msg(Log::PRIO_ERR) << "AesIcmCipher: Failed to set cipher CTR: size don't fits";
return;
}