payment gateway for rpn cn
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

checksum.go 162B

12345678910111213
  1. package main
  2. import (
  3. "crypto/md5"
  4. "fmt"
  5. "io"
  6. )
  7. func md5str(s string) string {
  8. h := md5.New()
  9. io.WriteString(h, s)
  10. return fmt.Sprintf("%x", h.Sum(nil))
  11. }