md5_test.go 103 B

12345678910
  1. package algorit
  2. import (
  3. "fmt"
  4. "testing"
  5. )
  6. func TestMd5(t *testing.T) {
  7. fmt.Println(Md5("123"))
  8. }