summaryrefslogtreecommitdiff
path: root/src/protocol/internal/ssh_3des-ssh1.c
diff options
context:
space:
mode:
authorIru Cai <mytbk920423@gmail.com>2016-11-05 14:54:10 +0800
committerIru Cai <mytbk920423@gmail.com>2016-11-08 15:16:40 +0800
commit0a817b9fcb8e7a1bf5c4a910eb0de1a549b5ba9f (patch)
treef765c09f54e47f0d1e34afb5d09885579e946c76 /src/protocol/internal/ssh_3des-ssh1.c
parent92c88c20fe34add9876e9d4e89813ea285f1bbac (diff)
downloadfqterm-0a817b9fcb8e7a1bf5c4a910eb0de1a549b5ba9f.tar.xz
Implement ssh_cipher_t for symmetric ciphers in SSH
* remove FQTermSSHCipher and FQTermSSH3DES, use ssh_cipher_t instead * implement EVP ciphers and 3DES-SSH1
Diffstat (limited to 'src/protocol/internal/ssh_3des-ssh1.c')
-rw-r--r--src/protocol/internal/ssh_3des-ssh1.c82
1 files changed, 82 insertions, 0 deletions
diff --git a/src/protocol/internal/ssh_3des-ssh1.c b/src/protocol/internal/ssh_3des-ssh1.c
new file mode 100644
index 0000000..9f78298
--- /dev/null
+++ b/src/protocol/internal/ssh_3des-ssh1.c
@@ -0,0 +1,82 @@
+#include "ssh_cipher.h"
+#include <openssl/des.h>
+#include <string.h>
+
+struct ssh1_3des_priv
+{
+ DES_cblock d_IV1;
+ DES_cblock d_IV2;
+ DES_cblock d_IV3;
+ DES_key_schedule d_key1;
+ DES_key_schedule d_key2;
+ DES_key_schedule d_key3;
+};
+
+static int
+init_3des(SSH_CIPHER* my)
+{
+ struct ssh1_3des_priv *priv = (struct ssh1_3des_priv*)my->priv;
+ const_DES_cblock *key = (const_DES_cblock*)my->key;
+ DES_set_key(key, &priv->d_key1);
+ DES_set_key(key+1, &priv->d_key2);
+ DES_set_key(key+2, &priv->d_key3);
+ memset(priv->d_IV1, 0, sizeof(DES_cblock));
+ memset(priv->d_IV2, 0, sizeof(DES_cblock));
+ memset(priv->d_IV3, 0, sizeof(DES_cblock));
+
+ return 1;
+}
+
+static void
+cleanup(SSH_CIPHER* my)
+{
+ if (my->key!=NULL)
+ free(my->key);
+
+ if (my->priv!=NULL)
+ free(my->priv);
+
+ free(my);
+}
+
+static int
+decrypt(SSH_CIPHER* my, const u_char *source, u_char *dest, size_t len)
+{
+ struct ssh1_3des_priv *priv = (struct ssh1_3des_priv*)my->priv;
+ DES_ncbc_encrypt(source, dest, len, &priv->d_key3, &priv->d_IV3, 0);
+ DES_ncbc_encrypt(dest, dest, len, &priv->d_key2, &priv->d_IV2, 1);
+ DES_ncbc_encrypt(dest, dest, len, &priv->d_key1, &priv->d_IV1, 0);
+ return 1;
+}
+
+static int
+encrypt(SSH_CIPHER* my, const u_char *source, u_char *dest, size_t len)
+{
+ struct ssh1_3des_priv *priv = (struct ssh1_3des_priv*)my->priv;
+ DES_ncbc_encrypt(source, dest, len, &priv->d_key1, &priv->d_IV1, 1);
+ DES_ncbc_encrypt(dest, dest, len, &priv->d_key2, &priv->d_IV2, 0);
+ DES_ncbc_encrypt(dest, dest, len, &priv->d_key3, &priv->d_IV3, 1);
+ return 1;
+}
+
+
+SSH_CIPHER*
+new_3des_ssh1(int enc)
+{
+ SSH_CIPHER *cipher = (SSH_CIPHER*)malloc(sizeof(SSH_CIPHER));
+ cipher->priv = malloc(sizeof(struct ssh1_3des_priv));
+ cipher->blkSize = 8;
+ cipher->IVSize = 0;
+ cipher->keySize = 24;
+ cipher->IV = NULL;
+ cipher->key = (unsigned char*)malloc(24);
+ if (enc)
+ cipher->crypt = encrypt;
+ else
+ cipher->crypt = decrypt;
+
+ cipher->init = init_3des;
+ cipher->cleanup = cleanup;
+
+ return cipher;
+}