summaryrefslogtreecommitdiff
path: root/Backend/Checksum.hs
blob: de98fbf44645368b649d53e3239054f6aa3a54a6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{- git-annex "checksum" backend
 - -}

module Backend.Checksum (backend) where

import qualified Backend.File
import Data.Digest.Pure.SHA
import BackendTypes

backend = Backend.File.backend {
	name = "checksum",
	getKey = keyValue
}

-- checksum the file to get its key
keyValue :: FilePath -> Annex (Maybe Key)
keyValue k = error "checksum keyValue unimplemented" -- TODO