EntityStore: Rename ObjectStore to EntityStore (part 1) (#59613)

This commit is contained in:
Ryan McKinley
2022-11-30 13:42:42 -08:00
committed by GitHub
parent b0b74337f1
commit 5dc7b01f9d
57 changed files with 3330 additions and 3337 deletions
@@ -0,0 +1,11 @@
package sqlstash
import (
"crypto/md5"
"encoding/hex"
)
func createContentsHash(contents []byte) string {
hash := md5.Sum(contents)
return hex.EncodeToString(hash[:])
}