EntityStore: Rename ObjectStore to EntityStore (part 1) (#59613)
This commit is contained in:
@@ -0,0 +1,11 @@
|
||||
package sqlstash
|
||||
|
||||
import (
|
||||
"crypto/md5"
|
||||
"encoding/hex"
|
||||
)
|
||||
|
||||
func createContentsHash(contents []byte) string {
|
||||
hash := md5.Sum(contents)
|
||||
return hex.EncodeToString(hash[:])
|
||||
}
|
||||
Reference in New Issue
Block a user