aboutsummaryrefslogtreecommitdiff
path: root/include/libssh/crypto.h
diff options
context:
space:
mode:
authorAris Adamantiadis <aris@0xbadc0de.be>2011-09-17 00:20:45 +0200
committerAris Adamantiadis <aris@0xbadc0de.be>2011-09-18 20:34:16 +0200
commitaf09313eac20e91e7e70336c3b8a45688a73d146 (patch)
tree0b731e2b25bb0307af0e47433a3f535451461b36 /include/libssh/crypto.h
parentac41a083efd64d94dfb15845c6c25ba5667ba8b8 (diff)
downloadlibssh-af09313eac20e91e7e70336c3b8a45688a73d146.tar.gz
libssh-af09313eac20e91e7e70336c3b8a45688a73d146.tar.xz
libssh-af09313eac20e91e7e70336c3b8a45688a73d146.zip
crypto: rename crypto_struct -> ssh_cipher_struct
Diffstat (limited to 'include/libssh/crypto.h')
-rw-r--r--include/libssh/crypto.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/include/libssh/crypto.h b/include/libssh/crypto.h
index 5f301ff2..dfdcac90 100644
--- a/include/libssh/crypto.h
+++ b/include/libssh/crypto.h
@@ -70,7 +70,7 @@ struct ssh_crypto_struct {
unsigned char *encryptMAC;
unsigned char *decryptMAC;
unsigned char hmacbuf[EVP_MAX_MD_SIZE];
- struct crypto_struct *in_cipher, *out_cipher; /* the cipher structures/objects */
+ struct ssh_cipher_struct *in_cipher, *out_cipher; /* the cipher structures/objects */
ssh_string server_pubkey;
const char *server_pubkey_type;
int do_compress_out; /* idem */
@@ -87,7 +87,7 @@ struct ssh_crypto_struct {
enum ssh_mac_e mac_type; /* Mac operations to use for key gen */
};
-struct crypto_struct {
+struct ssh_cipher_struct {
const char *name; /* ssh name of the algorithm */
unsigned int blocksize; /* blocksize of the algo */
unsigned int keylen; /* length of the key structure */
@@ -99,11 +99,11 @@ struct crypto_struct {
#endif
unsigned int keysize; /* bytes of key used. != keylen */
/* sets the new key for immediate use */
- int (*set_encrypt_key)(struct crypto_struct *cipher, void *key, void *IV);
- int (*set_decrypt_key)(struct crypto_struct *cipher, void *key, void *IV);
- void (*cbc_encrypt)(struct crypto_struct *cipher, void *in, void *out,
+ int (*set_encrypt_key)(struct ssh_cipher_struct *cipher, void *key, void *IV);
+ int (*set_decrypt_key)(struct ssh_cipher_struct *cipher, void *key, void *IV);
+ void (*cbc_encrypt)(struct ssh_cipher_struct *cipher, void *in, void *out,
unsigned long len);
- void (*cbc_decrypt)(struct crypto_struct *cipher, void *in, void *out,
+ void (*cbc_decrypt)(struct ssh_cipher_struct *cipher, void *in, void *out,
unsigned long len);
};