Mercurial > vim
view src/proto/blowfish.pro @ 11766:6315c631dcb7 v8.0.0765
patch 8.0.0765: build fails with tiny features
commit https://github.com/vim/vim/commit/81bdd6a02575b024db3dd5d91ec4ac4dfd41aa7a
Author: Bram Moolenaar <Bram@vim.org>
Date: Sun Jul 23 22:57:00 2017 +0200
patch 8.0.0765: build fails with tiny features
Problem: Build fails with tiny features.
Solution: Adjust #ifdef. (John Marriott)
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Sun, 23 Jul 2017 23:00:05 +0200 |
parents | 21b0a39d13ed |
children | a1229400434a |
line wrap: on
line source
/* blowfish.c */ void crypt_blowfish_encode(cryptstate_T *state, char_u *from, size_t len, char_u *to); void crypt_blowfish_decode(cryptstate_T *state, char_u *from, size_t len, char_u *to); void crypt_blowfish_init(cryptstate_T *state, char_u *key, char_u *salt, int salt_len, char_u *seed, int seed_len); int blowfish_self_test(void); /* vim: set ft=c : */