Mercurial > vim
annotate src/proto/blowfish.pro @ 5844:8ec9d2196bee v7.4.265
updated for version 7.4.265
Problem: Can't call a global function with "g:" in an expression.
Solution: Skip the "g:" when looking up the function.
author | Bram Moolenaar <bram@vim.org> |
---|---|
date | Thu, 24 Apr 2014 17:12:33 +0200 |
parents | 391e10afccf6 |
children | 18ac55444b37 |
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)); |
5651 | 3 void bf_cfb_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 : */ |