github.com/mutagen-io/mutagen@v0.18.0-rc1/pkg/synchronization/hashing/xxh128_nosspl.go (about)

     1  //go:build !mutagensspl
     2  
     3  package hashing
     4  
     5  import (
     6  	"hash"
     7  )
     8  
     9  // xxh128SupportStatus returns XXH128 hashing support status.
    10  func xxh128SupportStatus() AlgorithmSupportStatus {
    11  	return AlgorithmSupportStatusUnsupported
    12  }
    13  
    14  // newXXH128Factory creates a new hasher factory for XXH128 hashers.
    15  func newXXH128Factory() func() hash.Hash {
    16  	panic("XXH128 unsupported")
    17  }