Mercurial > vim
view src/proto/blowfish.pro @ 7635:1506f86b120f v7.4.1117
commit https://github.com/vim/vim/commit/d82103ed8534a1207742e9666ac7ef1e47dda12d
Author: Bram Moolenaar <Bram@vim.org>
Date: Sun Jan 17 17:04:05 2016 +0100
patch 7.4.1117
Problem: No longer get "." and ".." in directory list.
Solution: Do not skip "." and ".." unless EW_DODOT is set.
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Sun, 17 Jan 2016 17:15:04 +0100 |
parents | 18ac55444b37 |
children | 21b0a39d13ed |
line wrap: on
line source
/* blowfish.c */ void crypt_blowfish_encode __ARGS((cryptstate_T *state, char_u *from, size_t len, char_u *to)); void crypt_blowfish_decode __ARGS((cryptstate_T *state, char_u *from, size_t len, char_u *to)); void crypt_blowfish_init __ARGS((cryptstate_T *state, char_u *key, char_u *salt, int salt_len, char_u *seed, int seed_len)); int blowfish_self_test __ARGS((void)); /* vim: set ft=c : */