About

Metadata

  • Last updated , by jmackie
  • License MIT
  • Categories Systems Programming
  • Maintained by: contact@jmackie.dev

  • Lottery factor: 0

Links

Installation

Tested Compilers

  1. 8.10.1
  2. 8.8.3
  3. 8.6.5
  4. 8.4.4
  5. 8.2.2

Readme

kesha

CI Hackage

A Haskell library for computing the cryptographic hash of any path.

The implementation is an almost verbatim implementation of nix-hash, which is the standard tool used by the Nix package manager.

module Main where

import qualified Kesha

main :: IO ()
main = do
  result <- Kesha.hash "some-path"
  print result