diff options
| author | Thomas Voss <mail@thomasvoss.com> | 2024-09-18 21:56:56 +0200 | 
|---|---|---|
| committer | Thomas Voss <mail@thomasvoss.com> | 2024-09-18 21:56:56 +0200 | 
| commit | d5f2c55016e77a4e88f2c4df7d474b2430b65ec2 (patch) | |
| tree | 301239eacd1114540e3d12ff7c7a5972a3cd7312 /src | |
| parent | fcebac5606bb043b1fd35bfee9e4ac910c804aed (diff) | |
Diffstat (limited to 'src')
| -rw-r--r-- | src/sha1-x64.c | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/src/sha1-x64.c b/src/sha1-x64.c index ad82b6e..8b4c381 100644 --- a/src/sha1-x64.c +++ b/src/sha1-x64.c @@ -24,7 +24,7 @@ sha1hashblk(sha1_t *s, const uint8_t *blk)  #define bswapdmsk 0x1B  /* 0b00'01'10'11 */  	const __m128i bswapbmsk = _mm_set_epi64x(  		0x0001020304050607ULL, -		0x08090a0b0c0d0e0fULL +		0x08090A0B0C0D0E0FULL  	);  	const __m128i *blkx = (const __m128i *)blk; |