view src/proto/blowfish.pro @ 32494:d3fbd23c7526

Added tag v9.0.1578 for changeset 0632606a25306e327dcf8d4fb69c475d29b1f6ad
author Bram Moolenaar <Bram@vim.org>
date Thu, 25 May 2023 18:15:05 +0200
parents 3d4e28569a6d
children
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, crypt_arg_T *arg);
int blowfish_self_test(void);
/* vim: set ft=c : */