From 801fbde7575f619d724ccfa630dd9322a777a2d7 Mon Sep 17 00:00:00 2001 From: Frank Denis Date: Thu, 21 Apr 2016 20:37:11 +0200 Subject: [PATCH] scrypt/sse - Note that B's layout is permuted compared to nosse --- .../scryptsalsa208sha256/sse/pwhash_scryptsalsa208sha256_sse.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/libsodium/crypto_pwhash/scryptsalsa208sha256/sse/pwhash_scryptsalsa208sha256_sse.c b/src/libsodium/crypto_pwhash/scryptsalsa208sha256/sse/pwhash_scryptsalsa208sha256_sse.c index 4f5f4e86..58e59566 100644 --- a/src/libsodium/crypto_pwhash/scryptsalsa208sha256/sse/pwhash_scryptsalsa208sha256_sse.c +++ b/src/libsodium/crypto_pwhash/scryptsalsa208sha256/sse/pwhash_scryptsalsa208sha256_sse.c @@ -210,6 +210,7 @@ blockmix_salsa8_xor(const __m128i * Bin1, const __m128i * Bin2, __m128i * Bout, /** * integerify(B, r): * Return the result of parsing B_{2r-1} as a little-endian integer. + * Note that B's layout is permuted compared to the generic implementation. */ static inline uint32_t integerify(const void * B, size_t r)