16 lines
186 B
Go
Raw Normal View History

2016-01-12 11:38:43 +01:00
package user
import (
"crypto/hmac"
"crypto/md5"
"hash"
)
func TimestampHash() hash.Hash {
return md5.New()
}
func IDHash(key []byte) hash.Hash {
return hmac.New(md5.New, key)
}