zap trailing whitespace and tabs

This commit is contained in:
purplerain 2023-09-16 04:38:16 +00:00
parent 8b897ac235
commit 2990d002be
Signed by: purplerain
GPG key ID: F42C07F07E2E35B7
179 changed files with 992 additions and 992 deletions

View file

@ -1,5 +1,5 @@
/* $OpenBSD: poly1305.c,v 1.4 2023/07/17 05:26:38 djm Exp $ */
/*
/*
* Public Domain poly1305 from Andrew Moon
* poly1305-donna-unrolled.c from https://github.com/floodyberry/poly1305-donna
*/

View file

@ -28,7 +28,7 @@ unsigned char* addr_to_byte(unsigned char *bytes, const uint32_t addr[8]){
#else
memcpy(bytes, addr, 32);
return bytes;
#endif
#endif
}
int core_hash_SHA2(unsigned char *out, const unsigned int type, const unsigned char *key, unsigned int keylen, const unsigned char *in, unsigned long long inlen, unsigned int n){