mirror of
https://github.com/vbatts/go-mtree.git
synced 2024-11-22 08:25:38 +00:00
Merge pull request #143 from vbatts/sha512256
keyword: include sha-2 512/256
This commit is contained in:
commit
2352d84626
2 changed files with 28 additions and 24 deletions
|
@ -26,30 +26,32 @@ type KeywordFunc func(path string, info os.FileInfo, r io.Reader) ([]KeyVal, err
|
||||||
var (
|
var (
|
||||||
// KeywordFuncs is the map of all keywords (and the functions to produce them)
|
// KeywordFuncs is the map of all keywords (and the functions to produce them)
|
||||||
KeywordFuncs = map[Keyword]KeywordFunc{
|
KeywordFuncs = map[Keyword]KeywordFunc{
|
||||||
"size": sizeKeywordFunc, // The size, in bytes, of the file
|
"size": sizeKeywordFunc, // The size, in bytes, of the file
|
||||||
"type": typeKeywordFunc, // The type of the file
|
"type": typeKeywordFunc, // The type of the file
|
||||||
"time": timeKeywordFunc, // The last modification time of the file
|
"time": timeKeywordFunc, // The last modification time of the file
|
||||||
"link": linkKeywordFunc, // The target of the symbolic link when type=link
|
"link": linkKeywordFunc, // The target of the symbolic link when type=link
|
||||||
"uid": uidKeywordFunc, // The file owner as a numeric value
|
"uid": uidKeywordFunc, // The file owner as a numeric value
|
||||||
"gid": gidKeywordFunc, // The file group as a numeric value
|
"gid": gidKeywordFunc, // The file group as a numeric value
|
||||||
"nlink": nlinkKeywordFunc, // The number of hard links the file is expected to have
|
"nlink": nlinkKeywordFunc, // The number of hard links the file is expected to have
|
||||||
"uname": unameKeywordFunc, // The file owner as a symbolic name
|
"uname": unameKeywordFunc, // The file owner as a symbolic name
|
||||||
"gname": gnameKeywordFunc, // The file group as a symbolic name
|
"gname": gnameKeywordFunc, // The file group as a symbolic name
|
||||||
"mode": modeKeywordFunc, // The current file's permissions as a numeric (octal) or symbolic value
|
"mode": modeKeywordFunc, // The current file's permissions as a numeric (octal) or symbolic value
|
||||||
"cksum": cksumKeywordFunc, // The checksum of the file using the default algorithm specified by the cksum(1) utility
|
"cksum": cksumKeywordFunc, // The checksum of the file using the default algorithm specified by the cksum(1) utility
|
||||||
"md5": hasherKeywordFunc("md5digest", md5.New), // The MD5 message digest of the file
|
"md5": hasherKeywordFunc("md5digest", md5.New), // The MD5 message digest of the file
|
||||||
"md5digest": hasherKeywordFunc("md5digest", md5.New), // A synonym for `md5`
|
"md5digest": hasherKeywordFunc("md5digest", md5.New), // A synonym for `md5`
|
||||||
"rmd160": hasherKeywordFunc("ripemd160digest", ripemd160.New), // The RIPEMD160 message digest of the file
|
"rmd160": hasherKeywordFunc("ripemd160digest", ripemd160.New), // The RIPEMD160 message digest of the file
|
||||||
"rmd160digest": hasherKeywordFunc("ripemd160digest", ripemd160.New), // A synonym for `rmd160`
|
"rmd160digest": hasherKeywordFunc("ripemd160digest", ripemd160.New), // A synonym for `rmd160`
|
||||||
"ripemd160digest": hasherKeywordFunc("ripemd160digest", ripemd160.New), // A synonym for `rmd160`
|
"ripemd160digest": hasherKeywordFunc("ripemd160digest", ripemd160.New), // A synonym for `rmd160`
|
||||||
"sha1": hasherKeywordFunc("sha1digest", sha1.New), // The SHA1 message digest of the file
|
"sha1": hasherKeywordFunc("sha1digest", sha1.New), // The SHA1 message digest of the file
|
||||||
"sha1digest": hasherKeywordFunc("sha1digest", sha1.New), // A synonym for `sha1`
|
"sha1digest": hasherKeywordFunc("sha1digest", sha1.New), // A synonym for `sha1`
|
||||||
"sha256": hasherKeywordFunc("sha256digest", sha256.New), // The SHA256 message digest of the file
|
"sha256": hasherKeywordFunc("sha256digest", sha256.New), // The SHA256 message digest of the file
|
||||||
"sha256digest": hasherKeywordFunc("sha256digest", sha256.New), // A synonym for `sha256`
|
"sha256digest": hasherKeywordFunc("sha256digest", sha256.New), // A synonym for `sha256`
|
||||||
"sha384": hasherKeywordFunc("sha384digest", sha512.New384), // The SHA384 message digest of the file
|
"sha384": hasherKeywordFunc("sha384digest", sha512.New384), // The SHA384 message digest of the file
|
||||||
"sha384digest": hasherKeywordFunc("sha384digest", sha512.New384), // A synonym for `sha384`
|
"sha384digest": hasherKeywordFunc("sha384digest", sha512.New384), // A synonym for `sha384`
|
||||||
"sha512": hasherKeywordFunc("sha512digest", sha512.New), // The SHA512 message digest of the file
|
"sha512": hasherKeywordFunc("sha512digest", sha512.New), // The SHA512 message digest of the file
|
||||||
"sha512digest": hasherKeywordFunc("sha512digest", sha512.New), // A synonym for `sha512`
|
"sha512digest": hasherKeywordFunc("sha512digest", sha512.New), // A synonym for `sha512`
|
||||||
|
"sha512256": hasherKeywordFunc("sha512digest", sha512.New512_256), // The SHA512/256 message digest of the file
|
||||||
|
"sha512256digest": hasherKeywordFunc("sha512digest", sha512.New512_256), // A synonym for `sha512256`
|
||||||
|
|
||||||
"flags": flagsKeywordFunc, // NOTE: this is a noop, but here to support the presence of the "flags" keyword.
|
"flags": flagsKeywordFunc, // NOTE: this is a noop, but here to support the presence of the "flags" keyword.
|
||||||
|
|
||||||
|
|
|
@ -316,6 +316,8 @@ func KeywordSynonym(name string) Keyword {
|
||||||
retname = "sha384digest"
|
retname = "sha384digest"
|
||||||
case "sha512":
|
case "sha512":
|
||||||
retname = "sha512digest"
|
retname = "sha512digest"
|
||||||
|
case "sha512256":
|
||||||
|
retname = "sha512256digest"
|
||||||
case "xattrs":
|
case "xattrs":
|
||||||
retname = "xattr"
|
retname = "xattr"
|
||||||
default:
|
default:
|
||||||
|
|
Loading…
Reference in a new issue