summaryrefslogtreecommitdiffstats
path: root/src/proto/sha256.pro
blob: c5237f439fd2e0ecbac64133caf0c2a704f50a1a (plain)
1
2
3
4
5
6
7
8
/* sha256.c */
void sha256_start __ARGS((context_sha256_T *ctx));
void sha256_update __ARGS((context_sha256_T *ctx, char_u *input, UINT32_T length));
void sha256_finish __ARGS((context_sha256_T *ctx, char_u digest[32]));
char_u *sha256_key __ARGS((char_u *buf));
int sha256_self_test __ARGS((void));
void sha2_seed __ARGS((char_u header[], int header_len));
/* vim: set ft=c : */