starcrypto/sm3.go

12 lines
176 B
Go
Raw Normal View History

2024-03-10 13:04:26 +08:00
package starcrypto
import "b612.me/starcrypto/hashx"
2024-03-10 13:04:26 +08:00
func SM3(bstr []byte) []byte {
return hashx.SM3(bstr)
2024-03-10 13:04:26 +08:00
}
func SM3Str(bstr []byte) string {
return hashx.SM3Str(bstr)
2024-03-10 13:04:26 +08:00
}