Merge pull request #420 from Logan007/compFix

windows compilation fix
This commit is contained in:
Luca Deri
2020-09-18 12:47:05 +02:00
committed by GitHub
+2 -2
View File
@@ -664,8 +664,8 @@ static int speck_expand_key (const unsigned char *k, speck_context_t *ctx) {
// this functions wraps the call to internal speck_ctr functions which have slightly different
// signature -- ctx by value for SSE with SPECK_CTX_BYVAL defined in speck.h, by name otherwise
inline int speck_ctr (unsigned char *out, const unsigned char *in, unsigned long long inlen,
const unsigned char *n, speck_context_t *ctx) {
int speck_ctr (unsigned char *out, const unsigned char *in, unsigned long long inlen,
const unsigned char *n, speck_context_t *ctx) {
return internal_speck_ctr (out, in, inlen, n,
#if defined (SPECK_CTX_BYVAL)