LibSWIFFT
LibSWIFFT - A fast C/C++ library for the SWIFFT secure homomorphic hash function
Install / Use
/learn @gvilitechltd/LibSWIFFTREADME

LibSWIFFT - A fast C/C++ library for the SWIFFT secure homomorphic hash function
- Official Repository
- JOSS paper
- Documentation
- Quick start on Linux: Ensure
dockeris installed and runnable, clone this repository and go to its root directory, and run the commanddocker build . && docker run --rm -it $(docker build -q .)to build and test LibSWIFFT. - Quick performance comparison on Linux: Ensure
dockeris installed and runnable, clone this repository and go to its root directory, and run the commanddocker build . -f Dockerfile.compare-to-K2SN-MSS && docker run --rm -it $(docker build -q . -f Dockerfile.compare-to-K2SN-MSS)to build and compare performance with K2SN-MSS.
Introducing LibSWIFFT
LibSWIFFT is a production-ready C/C++ library providing SWIFFT, one of the fastest available secure hash functions, which is also collision-resistant as well as facilitates zero-knowledge proofs of knowledge of a preimage (ZKPoKP) and post-quantum digital signatures. It is based on academic work from 2007 described further below.
Why now, in early 2021? In late 2017, NIST has started a process for standardizing post-quantum cryptography, suggesting that it believes it may not be too long before a practical quantum-computer that threatens critical security standards (including Internet ones) based on classical cryptography will become a reality. About two years later, Google announced it had achieved quantum supremacy, by completing in 200 seconds a task they claimed would have taken a classical supercomputer about 10,000 years to complete. Though IBM, maker of the most powerful supercomputer at the time, disputed this claim and asserted the supercomputer would take only about 2.5 days for the task, it is clear quantum computing technology is advancing quickly. Consequently, post-quantum cryptography is becoming more relevant today and perhaps even urgent to develop.
Why another implementation of SWIFFT? LibSWIFFT is a reliable building block for fast and scalable cryptographic protocols. It is simple to use and maintain, has clean APIs, is well documented and tested, and is at least as fast as other implementations of SWIFFT and often faster. Other implementations of SWIFFT are:
- The 8-bit and 16-bit AVX2 implementations for K2SN-MSS. Both are arguably not as easy to use nor as well documented and tested as LibSWIFFT. The former is slower and uses less memory while the latter is about as fast as LibSWIFFT for AVX2 yet does not support AVX512.
- The original implementation written in 2007. It is minimal non-production code. The AVX2 implementation for K2SN-MSS is reported to be 25% faster.
An invocation of the tests-executable of LibSWIFFT running single-threaded using AVX2 on an Intel Skylake microarchitecture (Intel(R) Core(TM) i7-10875H CPU @ 2.30GHz):
$ ./test/swifft_catch "swifft takes at most 2000 cycles per call"
Filters: swifft takes at most 2000 cycles per call
running 1*10000000 rounds: cycles/rounds=1097.94 cycles/byte=4.28882 Giga-cycles/sec=2.30399 MB/sec=512.322 cycles/rdtsc=16
demonstrates that LibSWIFFT is quite fast on short inputs (here, 256 bytes), often used in practical zero-knowledge proofs and post-quantum digital signatures. This is more than an order of magnitude faster than the originally reported 40MB/sec on a 3.2 GHz Intel Pentium 4. This is also faster than K2SN-MSS's binary 16-bit SWIFFT function implementation (for an input of 128 bytes), which is the fastest one in the K2SN-MSS implementation, for the same executaion settings, i.e. running single-threaded using AVX2 on an Intel Skylake microarchitecture (Intel(R) Core(TM) i7-10875H CPU @ 2.30GHz):
$ ./tester
1000000 SWIFFT16 rounds: cycles/round=737.363098 cycles/byte=5.760649
It also compares well with modern hash functions:
- Blake3 - cryptographic hash function achieving about 3-to-4 cycles/byte using AVX512 on short inputs and are non-homomorphic nor facilitating proofs of knowledge of a preimage.
- Seahash - a hash function achieving ~0.24 cycles/byte but is non-cryptographic.
On SWIFFT
SWIFFT is a family of homomorphic hash functions provided as part of a candidate submission to the NIST hash function competition in 2008 by Vadim Lyubashevsky, Daniele Micciancio, Chris Peikert, and Alon Rosen. The family has an interesting set of characteristics:
- Provably collision-resistant: it is provably computationally hard to find a binary-valued
xgiven its image underfthat is chosen randomly. - Universal: for any
x_1,x_2in the domain the probability thatf(x_1) = f(x_2)over the choice offin the family is the inverse of the size of the range. - Regular: if
xis distributed uniformly thenf(x)is distributed uniformly for anyfin the family. - Randomness extractor: even if
xis not distributed uniformly,f(x)is distributed uniformly over the choice offin the family. - Homomorphic: each
fin the family is homomorphic over the domain. - Facilitates ZKPoKPs: the resulting hash value can be readily used in ZKPoKPs.
- Facilitates post-quantum digital signatures: its homomorphism property enables short post-quantum hash-based digital signature schemes, such as K2SN-MSS.
- Constant-time: any
fin the family is free of data-dependent branching and therefore facilitates avoidance of timing side-channel attacks.
Nevertheless, the family is not pseudorandom, due to the homomorphism property, nor claimed to behave like a random oracle.
On LibSWIFFT
LibSWIFFT was implemented with reference to the SWIFFTX submission to NIST and provides the same SWIFFT hash function that is part of the submission. High speed is achieved using various code optimization techniques, including SIMD instructions that are very natural for the implementation of the SWIFFT function. Compared to the SWIFFT code in the submission, LibSWIFFT adds the following:
- Automatic library initialization using build-time generation of internal tables.
- Convenient APIs, including for homomorphic operations and parallel variations based on OpenMP, for computing SWIFFT on short inputs.
- Support for input vectors of either binary-valued (in {0,1}) or trinary-valued (in {-1,0,1}) elements.
- Bug fixes with respect to the reference submission, in particular related to the homomorphism property.
- Performance improvements compared to the reference submission.
- Support for newer CPU instruction sets: AVX, AVX2, and AVX512.
- Over 30 test-cases providing excellent coverage of the APIs and the mathematical properties of SWIFFT.
Formally, LibSWIFFT provides a single hash function that maps from an input domain Z_2^{2048} (taking 256B) to an output domain Z_{257}^{64} (taking 128B, at 2B per element) and then to a compact domain Z_{256}^{64} (taking 64B). The computation of the first map is done over Z_{257}. The homomorphism property applies to the input and output domains, but not to the compact domain, and is revealed when the binary-valued input domain is naturally embedded in Z_{257}^{2048}. Generally, it is computationally hard to find a binary-valued pre-image given an output computed as the sum of N outputs corresponding to known binary-valued pre-images. On the other hand, it is easy to find a small-valued pre-image (over Z_{257}^{2048}) when N is small, since it is simply the sum of the known pre-images due to the homomorphism property.
Using LibSWIFFT
LibSWIFFT is intended to be used by cryptography researchers and by software developers knowledgeable in cryptography programming. LibSWIFFT is most useful in use cases that require provable-security and speed on short inputs. It may also be interesting in use cases that take advantage of its uncommon homomorphism property. Future versions of LibSWIFFT may target a larger audience.
The main LibSwifft C API is documented in include/libswifft/swifft.h. The following API variations are available:
include/libswifft/swifft_avx.h: Same functions as ininclude/libswifft/swifft.hbut with an added suffix_AVXand implemented using AVX instruction set.include/libswifft/swifft_avx2.h: Same functions as ininclude/libswifft/swifft.hbut with an added suffix_AVX2and implemented using AVX2 instruction set.include/libswifft/swifft_avx512.h: Same functions as ininclude/libswifft/swifft.hbut with an added suffix_AVX512and implemented using AVX512 instruction set.include/libswifft/swifft.h:
