github.com/lamielle/terraform@v0.3.2-0.20141121070651-81f008ba53d5/helper/hashcode/hashcode.go (about)

     1  package hashcode
     2  
     3  import (
     4  	"hash/crc32"
     5  )
     6  
     7  // String hashes a string to a unique hashcode.
     8  func String(s string) int {
     9  	return int(crc32.ChecksumIEEE([]byte(s)))
    10  }