Popularity
7.6
Stable
Activity
0.0
Stable
20
8
6

Monthly Downloads: 6
Programming language: Haskell
License: MIT License
Tags: Cryptography     Galois    
Latest version: v0.1.0

galois-fft alternatives and similar packages

Based on the "galois" category.
Alternatively, view galois-fft alternatives based on common mentions on social networks and blogs.

Do you think we are missing an alternative of galois-fft or a related project?

Add another 'galois' Package

README

galois-fft

The library provides Fast Fourier Transforms over finite fields with functionality for polynomial evaluation, polynomial interpolation, and computation of Lagrange polynomials.

In a finite field with elements. We can define a discrete Fourier transform by selecting roots of unity .

Example

import Protolude

import Data.Curve.Weierstrass.BN254 (Fr)
import Data.Pairing.BN254 (getRootOfUnity)

import FFT

k :: Int
k = 5

polySize :: Int
polySize = 2^k

leftCoeffs, rightCoeffs :: [Fr]
leftCoeffs = map fromIntegral [1..polySize]
rightCoeffs = map fromIntegral (reverse [1..polySize])

main :: IO ()
main = do
  print (interpolate getRootOfUnity leftCoeffs)
  print (fftMult getRootOfUnity leftCoeffs rightCoeffs)
  pure ()

License

Copyright (c) 2018-2020 Adjoint Inc.

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE
OR OTHER DEALINGS IN THE SOFTWARE.


*Note that all licence references and agreements mentioned in the galois-fft README section above are relevant to that project's source code only.