以下代码分别为乘法hash,sha256,md5,ripemd160的使用方法:
package main
import (
"fmt"
"crypto/sha256"
"os"
"io"
"crypto/md5"
"encoding/hex"
"golang.org/x/crypto/ripemd160"
)
func main() {
//通过乘法hash对"hello world"进行加密
fmt.Println(bernstein("hello world"))
Mysha256()
MyIOSha256()
MyMd5()
MyRipemd160()
}
//乘法hash方法
func bernstein(key string) int {
hash := 0
var i int
for i = 0; i < len(key); i++ {
hash = 33*hash + int(key[i])
}
return hash
}
//调用自带的sha256库
func Mysha256() {
fmt.Println("sha256--------------------------------")
sum := sha256.Sum256([]byte("hello world"))
fmt.Printf("%x\n", sum)
//第二种调用方法
h := sha256.New()
h.Write([]byte("hello world"))
fmt.Printf("%x\n", h.Sum(nil))
}
//将文件中的内容进行加密
fun