aboutsummaryrefslogtreecommitdiff
path: root/libssh/crypt.c
diff options
context:
space:
mode:
authorAris Adamantiadis <aris@0xbadc0de.be>2008-06-12 20:40:43 +0000
committerAris Adamantiadis <aris@0xbadc0de.be>2008-06-12 20:40:43 +0000
commitda3d665a13e7989a9cf78d07738a92981f6e3486 (patch)
treed75038a70977204b74b610417379588436001c86 /libssh/crypt.c
parentfe51f9c7662b7391f80953bedc4fe61b89013913 (diff)
downloadlibssh-da3d665a13e7989a9cf78d07738a92981f6e3486.tar.gz
libssh-da3d665a13e7989a9cf78d07738a92981f6e3486.tar.xz
libssh-da3d665a13e7989a9cf78d07738a92981f6e3486.zip
begin fixing the ssh_say everywhere
git-svn-id: svn+ssh://svn.berlios.de/svnroot/repos/libssh/trunk@167 7dcaeef0-15fb-0310-b436-a5af3365683c
Diffstat (limited to 'libssh/crypt.c')
-rw-r--r--libssh/crypt.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/libssh/crypt.c b/libssh/crypt.c
index e2f53aa1..3e5bb5a1 100644
--- a/libssh/crypt.c
+++ b/libssh/crypt.c
@@ -39,14 +39,14 @@ u32 packet_decrypt_len(SSH_SESSION *session, char *crypted){
if(session->current_crypto)
packet_decrypt(session,crypted,session->current_crypto->in_cipher->blocksize);
memcpy(&decrypted,crypted,sizeof(decrypted));
- ssh_say(3,"size decrypted : %lx\n",ntohl(decrypted));
+ ssh_log(session,SSH_LOG_PACKET,"packet size decrypted : %d (0x%lx)",ntohl(decrypted),ntohl(decrypted));
return ntohl(decrypted);
}
int packet_decrypt(SSH_SESSION *session, void *data,u32 len){
struct crypto_struct *crypto=session->current_crypto->in_cipher;
char *out=malloc(len);
- ssh_say(3,"Decrypting %d bytes data\n",len);
+ ssh_log(session,SSH_LOG_PACKET,"Decrypting %d bytes",len);
#ifdef HAVE_LIBGCRYPT
crypto->set_decrypt_key(crypto,session->current_crypto->decryptkey,session->current_crypto->decryptIV);
crypto->cbc_decrypt(crypto,data,out,len);
@@ -69,7 +69,7 @@ unsigned char * packet_encrypt(SSH_SESSION *session,void *data,u32 len){
if(!session->current_crypto)
return NULL; /* nothing to do here */
crypto= session->current_crypto->out_cipher;
- ssh_say(3,"seq num = %d, len = %d\n",session->send_seq,len);
+ ssh_log(session,SSH_LOG_PACKET,"encrypting packet with seq num: %d, len: %d",session->send_seq,len);
#ifdef HAVE_LIBGCRYPT
crypto->set_encrypt_key(crypto,session->current_crypto->encryptkey,session->current_crypto->encryptIV);
#elif defined HAVE_LIBCRYPTO