annotate src/proto/blowfish.pro @ 3995:c2ea289a5b7f

Added tag v7-3-752 for changeset ed936effb1f3
author Bram Moolenaar <bram@vim.org>
date Wed, 05 Dec 2012 19:00:06 +0100
parents c08f91142c41
children 391e10afccf6
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
2180
f60a0c9cbe6c Add the blowfish encryption patch from Mohsin Ahmed. Needs more work.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
1 /* blowfish.c */
2265
b7cb69ab616d Added salt to blowfish encryption.
Bram Moolenaar <bram@vim.org>
parents: 2245
diff changeset
2 void bf_key_init __ARGS((char_u *password, char_u *salt, int salt_len));
2180
f60a0c9cbe6c Add the blowfish encryption patch from Mohsin Ahmed. Needs more work.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
3 void bf_ofb_init __ARGS((char_u *iv, int iv_len));
2245
4e0124f5aee2 Optimize the blowfish crypt/decrypt code a bit more.
Bram Moolenaar <bram@vim.org>
parents: 2180
diff changeset
4 void bf_crypt_encode __ARGS((char_u *from, size_t len, char_u *to));
4e0124f5aee2 Optimize the blowfish crypt/decrypt code a bit more.
Bram Moolenaar <bram@vim.org>
parents: 2180
diff changeset
5 void bf_crypt_decode __ARGS((char_u *ptr, long len));
4e0124f5aee2 Optimize the blowfish crypt/decrypt code a bit more.
Bram Moolenaar <bram@vim.org>
parents: 2180
diff changeset
6 void bf_crypt_init_keys __ARGS((char_u *passwd));
2267
c08f91142c41 Crypt the swapfile.
Bram Moolenaar <bram@vim.org>
parents: 2265
diff changeset
7 void bf_crypt_save __ARGS((void));
c08f91142c41 Crypt the swapfile.
Bram Moolenaar <bram@vim.org>
parents: 2265
diff changeset
8 void bf_crypt_restore __ARGS((void));
2180
f60a0c9cbe6c Add the blowfish encryption patch from Mohsin Ahmed. Needs more work.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
9 int blowfish_self_test __ARGS((void));
f60a0c9cbe6c Add the blowfish encryption patch from Mohsin Ahmed. Needs more work.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
10 /* vim: set ft=c : */