comparison src/proto/blowfish.pro @ 39:c16898406ff2

synchorinize version 7.3.081
author one@zeus.cr.ie.u-ryukyu.ac.jp
date Fri, 17 Dec 2010 17:43:06 +0900
parents
children
comparison
equal deleted inserted replaced
38:e06a1cd7230d 39:c16898406ff2
1 /* blowfish.c */
2 void bf_key_init __ARGS((char_u *password, char_u *salt, int salt_len));
3 void bf_ofb_init __ARGS((char_u *iv, int iv_len));
4 void bf_crypt_encode __ARGS((char_u *from, size_t len, char_u *to));
5 void bf_crypt_decode __ARGS((char_u *ptr, long len));
6 void bf_crypt_init_keys __ARGS((char_u *passwd));
7 void bf_crypt_save __ARGS((void));
8 void bf_crypt_restore __ARGS((void));
9 int blowfish_self_test __ARGS((void));
10 /* vim: set ft=c : */