Apply .gitignore rules

This commit is contained in:
皮蛋13361098506
2025-01-06 16:21:36 +08:00
parent 1b77f62820
commit ccd2c530cf
580 changed files with 69806 additions and 0 deletions

View File

@@ -0,0 +1,32 @@
package securityUtil
import (
"testing"
)
func TestSha1String(t *testing.T) {
s := "hello world"
result := Sha1String(s, true)
if result != "2AAE6C35C94FCFB415DBE95F408B9CE91EE846ED" {
t.Errorf("Sha1String(\"hello world\") failed.Got %s, expected %s", result, "2AAE6C35C94FCFB415DBE95F408B9CE91EE846ED")
}
result = Sha1String(s, false)
if result != "2aae6c35c94fcfb415dbe95f408b9ce91ee846ed" {
t.Errorf("Sha1String(\"hello world\") failed.Got %s, expected %s", result, "2aae6c35c94fcfb415dbe95f408b9ce91ee846ed")
}
}
func TestSha1Bytes(t *testing.T) {
s := "hello world"
b := []byte(s)
result := Sha1Bytes(b, true)
if result != "2AAE6C35C94FCFB415DBE95F408B9CE91EE846ED" {
t.Errorf("Sha1Bytes(\"hello world\") failed.Got %s, expected %s", result, "2AAE6C35C94FCFB415DBE95F408B9CE91EE846ED")
}
result = Sha1Bytes(b, false)
if result != "2aae6c35c94fcfb415dbe95f408b9ce91ee846ed" {
t.Errorf("Sha1Bytes(\"hello world\") failed.Got %s, expected %s", result, "2aae6c35c94fcfb415dbe95f408b9ce91ee846ed")
}
}