From 3e314e863cb70f8594b0c9b79d14edb3a929d708 Mon Sep 17 00:00:00 2001 From: Aris Adamantiadis Date: Sat, 26 Sep 2009 01:15:48 +0200 Subject: More include file splitting --- include/libssh/wrapper.h | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'include/libssh/wrapper.h') diff --git a/include/libssh/wrapper.h b/include/libssh/wrapper.h index c053faaf..093f8b74 100644 --- a/include/libssh/wrapper.h +++ b/include/libssh/wrapper.h @@ -92,7 +92,6 @@ typedef BN_CTX* bignum_CTX; #endif /* OPENSSL_CRYPTO */ -/* wrapper.c */ MD5CTX md5_init(void); void md5_update(MD5CTX c, const void *data, unsigned long len); void md5_final(unsigned char *md,MD5CTX c); @@ -106,5 +105,10 @@ HMACCTX hmac_init(const void *key,int len,int type); void hmac_update(HMACCTX c, const void *data, unsigned long len); void hmac_final(HMACCTX ctx,unsigned char *hashmacbuf,unsigned int *len); +int crypt_set_algorithms(ssh_session ); +int crypt_set_algorithms_server(ssh_session session); +struct ssh_crypto_struct *crypto_new(void); +void crypto_free(struct ssh_crypto_struct *crypto); + #endif /* WRAPPER_H_ */ -- cgit