galois-fft: FFTs over finite fields

[ cryptography, library, mit ] [ Propose Tags ]

Finite field polynomial arithmetic based on fast Fourier transforms


[Skip to Readme]

Modules

[Index] [Quick Jump]

Downloads

Maintainer's Corner

Package maintainers

For package maintainers and hackage trustees

Candidates

  • No Candidates
Versions [RSS] 0.1.0
Change log ChangeLog.md
Dependencies base (>=4.10 && <5), elliptic-curve (>=0.3 && <0.4), galois-field (>=1 && <2), poly (>=0.3.2), protolude (>=0.2 && <0.3), vector (>=0.12 && <0.13) [details]
License MIT
Author
Maintainer Adjoint Inc (info@adjoint.io)
Category Cryptography
Home page https://github.com/adjoint-io/galois-fft#readme
Bug tracker https://github.com/adjoint-io/galois-fft/issues
Source repo head: git clone https://github.com/adjoint-io/galois-fft
Uploaded by sdiehl at 2019-11-27T09:42:32Z
Distributions
Reverse Dependencies 1 direct, 0 indirect [details]
Downloads 499 total (5 in the last 30 days)
Rating (no votes yet) [estimated by Bayesian average]
Your Rating
  • λ
  • λ
  • λ
Status Docs available [build log]
Last success reported on 2019-11-27 [all 1 reports]

Readme for galois-fft-0.1.0

[back to package description]

Adjoint Logo

galois-fft

Fast Fourier Transforms over finite fields. Provides functionality for polynomial evaluation, polynomial interpolation, and computation of Lagrange polynomials.

In a finite field F with 2^m elements. We can define a discrete Fourier transform by selecting 2^m - 1 roots of unity ω ∈ F.

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-2019 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.