Mercurial > vim
annotate src/proto/blowfish.pro @ 5604:b43363a7b4c7 v7.4.149
updated for version 7.4.149
Problem: Get E685 error when assigning a function to an autoload variable.
(Yukihiro Nakadaira)
Solution: Instead of having a global no_autoload variable, pass an autoload
flag down to where it is used. (ZyX)
author | Bram Moolenaar <bram@vim.org> |
---|---|
date | Tue, 14 Jan 2014 15:24:39 +0100 |
parents | c08f91142c41 |
children | 391e10afccf6 |
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 | 7 void bf_crypt_save __ARGS((void)); |
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 : */ |