sync code with last improvements from OpenBSD

This commit is contained in:
purplerain 2023-08-28 05:57:34 +00:00
commit 88965415ff
Signed by: purplerain
GPG key ID: F42C07F07E2E35B7
26235 changed files with 29195616 additions and 0 deletions

19
xserver/include/xsha1.h Normal file
View file

@ -0,0 +1,19 @@
#ifndef XSHA1_H
#define XSHA1_H
/* Initialize SHA1 computation. Returns NULL on error. */
void *x_sha1_init(void);
/*
* Add some data to be hashed. ctx is the value returned by x_sha1_init()
* Returns 0 on error, 1 on success.
*/
int x_sha1_update(void *ctx, void *data, int size);
/*
* Place the hash in result, and free ctx.
* Returns 0 on error, 1 on success.
*/
int x_sha1_final(void *ctx, unsigned char result[20]);
#endif