summaryrefslogtreecommitdiff
path: root/include/encrypt.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/encrypt.h')
-rw-r--r--include/encrypt.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/include/encrypt.h b/include/encrypt.h
index 7ac3d884a..c9fc46b15 100644
--- a/include/encrypt.h
+++ b/include/encrypt.h
@@ -13,10 +13,10 @@
*/
typedef struct encryption_ {
- int (*encrypt)(const char *src, int len, char *dest, int size);
- int (*encrypt_in_place)(char *buf, int size);
- int (*encrypt_check_len)(int passlen, int bufsize);
- int (*decrypt)(const char *src, char *dest, int size);
- int (*check_password)(const char *plaintext, const char *password);
+ int (*encrypt)(const char *src, int len, char *dest, int size);
+ int (*encrypt_in_place)(char *buf, int size);
+ int (*encrypt_check_len)(int passlen, int bufsize);
+ int (*decrypt)(const char *src, char *dest, int size);
+ int (*check_password)(const char *plaintext, const char *password);
} Encryption;