xref: /vim-8.2.3635/src/proto/sha256.pro (revision 2bf24176)
1/* sha256.c */
2void sha256_start __ARGS((context_sha256_T *ctx));
3void sha256_update __ARGS((context_sha256_T *ctx, char_u *input, UINT32_T length));
4void sha256_finish __ARGS((context_sha256_T *ctx, char_u digest[32]));
5char_u *sha256_bytes __ARGS((char_u *buf, int buf_len, char_u *salt, int salt_len));
6char_u *sha256_key __ARGS((char_u *buf, char_u *salt, int salt_len));
7int sha256_self_test __ARGS((void));
8void sha2_seed __ARGS((char_u *header, int header_len, char_u *salt, int salt_len));
9/* vim: set ft=c : */
10