summaryrefslogtreecommitdiff
path: root/src/protocol/internal/ssh_cipher.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/protocol/internal/ssh_cipher.h')
-rw-r--r--src/protocol/internal/ssh_cipher.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/protocol/internal/ssh_cipher.h b/src/protocol/internal/ssh_cipher.h
index ec51062..94b83ed 100644
--- a/src/protocol/internal/ssh_cipher.h
+++ b/src/protocol/internal/ssh_cipher.h
@@ -36,8 +36,13 @@ extern "C" {
};
typedef const EVP_CIPHER*(*SSH_EVP)(void);
+ typedef SSH_CIPHER*(*NEW_CIPHER)(int);
+
SSH_CIPHER* new_ssh_cipher_evp(SSH_EVP, size_t key, size_t iv, size_t blk, int enc);
SSH_CIPHER* new_3des_ssh1(int);
+ /* all_ciphers.c */
+ extern const char all_ciphers_list[];
+ NEW_CIPHER search_cipher(const char *s);
#ifdef __cplusplus
}