view src/proto/sha256.pro @ 31065:50405a481037 v9.0.0867

patch 9.0.0867: wildmenu redrawing code is spread out Commit: https://github.com/vim/vim/commit/d6e91385f0f7256aec8f70373c9e3399770d22e5 Author: Bram Moolenaar <Bram@vim.org> Date: Sat Nov 12 17:44:13 2022 +0000 patch 9.0.0867: wildmenu redrawing code is spread out Problem: Wildmenu redrawing code is spread out. Solution: Refactor to move code together. (closes https://github.com/vim/vim/issues/11528)
author Bram Moolenaar <Bram@vim.org>
date Sat, 12 Nov 2022 18:45:04 +0100
parents 21b0a39d13ed
children
line wrap: on
line source

/* sha256.c */
void sha256_start(context_sha256_T *ctx);
void sha256_update(context_sha256_T *ctx, char_u *input, UINT32_T length);
void sha256_finish(context_sha256_T *ctx, char_u digest[32]);
char_u *sha256_bytes(char_u *buf, int buf_len, char_u *salt, int salt_len);
char_u *sha256_key(char_u *buf, char_u *salt, int salt_len);
int sha256_self_test(void);
void sha2_seed(char_u *header, int header_len, char_u *salt, int salt_len);
/* vim: set ft=c : */