You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
175 B

  1. package abstract_sql
  2. import (
  3. "crypto/md5"
  4. "io"
  5. )
  6. // returns a 128 bit hash
  7. func md5hash(dir string) []byte {
  8. h := md5.New()
  9. io.WriteString(h, dir)
  10. return h.Sum(nil)
  11. }