delete sum

This commit is contained in:
tsingbx
2024-07-31 14:56:03 +08:00
parent 8882d75132
commit c9a7dab419
2 changed files with 0 additions and 10 deletions

View File

@@ -66,8 +66,3 @@ func Sum256(data []byte) (ret [Size]byte) {
openssl.SHA256Bytes(data, &ret[0])
return
}
func Sum(data []byte) (ret [Size]byte) {
openssl.SHA256Bytes(data, &ret[0])
return
}

View File

@@ -72,11 +72,6 @@ func Sum512(data []byte) (ret [Size]byte) {
return
}
func Sum(data []byte) (ret [Size]byte) {
openssl.SHA512Bytes(data, &ret[0])
return
}
func New512_224() hash.Hash {
panic("todo: New512_224")
}