fixed

Pure Haskell large fixed-width integers and Montgomery arithmetic.
git clone git://git.ppad.tech/fixed.git
Log | Files | Refs | README | LICENSE

commit 3441bf0d8798ecbf4af7e0d21afdc5d10579c52b
parent 7ba5480df7f0e4a73b214cd9566082fa3728972f
Author: Jared Tobin <jared@jtobin.io>
Date:   Sat, 20 Dec 2025 15:27:37 -0330

meta: description tweaks

Diffstat:
MREADME.md | 8+++-----
Mflake.nix | 2+-
Mppad-fixed.cabal | 8+++++---
3 files changed, 9 insertions(+), 9 deletions(-)

diff --git a/README.md b/README.md @@ -1,10 +1,8 @@ # ppad-fixed -A pure (**pre-release**, under construction, -not-yet-guaranteed-constant-time) high-performance implementation -of large fixed-width integers and supporting operations, including -Montgomery-form arithmetic on domains related to the the elliptic curve -secp256k1. +A pure high-performance implementation of large fixed-width integers +and supporting constant-time operations, including Montgomery-form +arithmetic on domains related to the the elliptic curve secp256k1. ## Usage diff --git a/flake.nix b/flake.nix @@ -1,5 +1,5 @@ { - description = "Fixed-width integer types."; + description = "Large fixed-width words and constant-time arithmetic."; inputs = { ppad-nixpkgs = { diff --git a/ppad-fixed.cabal b/ppad-fixed.cabal @@ -1,7 +1,7 @@ cabal-version: 3.0 name: ppad-fixed -version: 0.0.1 -synopsis: A large fixed-width integer library. +version: 0.1.0 +synopsis: Large fixed-width words and constant-time arithmetic. license: MIT license-file: LICENSE author: Jared Tobin @@ -11,7 +11,9 @@ build-type: Simple tested-with: GHC == { 9.8.1 } extra-doc-files: CHANGELOG description: - Representations for, and operations on, large fixed-width integers. + A pure high-performance implementation of large fixed-width integers + and supporting constant-time operations, including Montgomery-form + arithmetic on domains related to the the elliptic curve secp256k1. flag llvm description: Use GHC's LLVM backend.