Searched refs:htSHA512 (Results 1 – 4 of 4) sorted by relevance
/dports/sysutils/nix/nix-2.3.10/src/libutil/ |
H A D | hash.cc | 24 else if (type == htSHA512) hashSize = sha512HashSize; in init() 223 else if (ht == htSHA512) SHA512_Init(&ctx.sha512); in start() 233 else if (ht == htSHA512) SHA512_Update(&ctx.sha512, bytes, len); in update() 242 else if (ht == htSHA512) SHA512_Final(hash, &ctx.sha512); in finish() 340 else if (s == "sha512") return htSHA512; in parseHashType() 350 else if (ht == htSHA512) return "sha512"; in printHashType()
|
H A D | hash.hh | 13 enum HashType : char { htUnknown, htMD5, htSHA1, htSHA256, htSHA512 }; enumerator
|
/dports/sysutils/nix/nix-2.3.10/src/libexpr/primops/ |
H A D | fetchMercurial.cc | 76 …Path stampFile = fmt("%s/.hg/%s.stamp", cacheDir, hashString(htSHA512, rev).to_string(Base32, fals… in exportMercurial() 127 …std::string storeLinkName = hashString(htSHA512, name + std::string("\0"s) + hgInfo.rev).to_string… in exportMercurial()
|
H A D | fetchGit.cc | 150 …std::string storeLinkName = hashString(htSHA512, name + std::string("\0"s) + gitInfo.rev).to_strin… in exportGit()
|