21 lines
384 B
Go
21 lines
384 B
Go
package main
|
|
|
|
import (
|
|
"crypto"
|
|
"crypto/md5"
|
|
"fmt"
|
|
"io"
|
|
)
|
|
|
|
func main() {
|
|
h := md5.New()
|
|
io.WriteString(h, "The fog is getting thicker!")
|
|
io.WriteString(h, "And Leon's getting laaarger!")
|
|
fmt.Printf("%x\n", h.Sum(nil))
|
|
|
|
h = crypto.MD5.New()
|
|
io.WriteString(h, "The fog is getting thicker!")
|
|
io.WriteString(h, "And Leon's getting laaarger!")
|
|
fmt.Printf("%x\n", h.Sum(nil))
|
|
}
|