Mercurial > vim
view src/proto/blowfish.pro @ 31547:a48b559cdfc4 v9.0.1106
patch 9.0.1106: not all postfix files are recognized
Commit: https://github.com/vim/vim/commit/09ce0b8e1197c85dacf97e75b9b9ac18e0d192df
Author: KodeToad <3880336+KodeToad@users.noreply.github.com>
Date: Tue Dec 27 20:17:19 2022 +0000
patch 9.0.1106: not all postfix files are recognized
Problem: Not all postfix files are recognized.
Solution: Recognize main.cf.proto files. (closes https://github.com/vim/vim/issues/11732)
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Tue, 27 Dec 2022 21:30:04 +0100 |
parents | 7e9e53a0368f |
children | 3d4e28569a6d |
line wrap: on
line source
/* blowfish.c */ void crypt_blowfish_encode(cryptstate_T *state, char_u *from, size_t len, char_u *to, int last); void crypt_blowfish_decode(cryptstate_T *state, char_u *from, size_t len, char_u *to, int last); int 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 : */