Compare commits
5 Commits
Author | SHA1 | Date |
---|---|---|
兔子 | e722b958a4 | 2 months ago |
兔子 | f3f50b4f6c | 8 months ago |
兔子 | 5d3ebcd501 | 8 months ago |
兔子 | d268022f8e | 8 months ago |
兔子 | 0a4c0a944b | 8 months ago |
@ -0,0 +1,122 @@
|
|||||||
|
package starcrypto
|
||||||
|
|
||||||
|
import (
|
||||||
|
"bytes"
|
||||||
|
"crypto/aes"
|
||||||
|
"crypto/cipher"
|
||||||
|
"crypto/rand"
|
||||||
|
"errors"
|
||||||
|
"io"
|
||||||
|
)
|
||||||
|
|
||||||
|
const (
|
||||||
|
PKCS5PADDING = "PKCS5"
|
||||||
|
)
|
||||||
|
|
||||||
|
func CustomEncryptAesCFB(origData []byte, key []byte) ([]byte, error) {
|
||||||
|
block, err := aes.NewCipher(key)
|
||||||
|
if err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
encrypted := make([]byte, aes.BlockSize+len(origData))
|
||||||
|
iv := encrypted[:aes.BlockSize]
|
||||||
|
if _, err := io.ReadFull(rand.Reader, iv); err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
stream := cipher.NewCFBEncrypter(block, iv)
|
||||||
|
stream.XORKeyStream(encrypted[aes.BlockSize:], origData)
|
||||||
|
return encrypted, nil
|
||||||
|
}
|
||||||
|
|
||||||
|
func CustomDecryptAesCFB(encrypted []byte, key []byte) ([]byte, error) {
|
||||||
|
block, err := aes.NewCipher(key)
|
||||||
|
if err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
if len(encrypted) < aes.BlockSize {
|
||||||
|
return nil, errors.New("ciphertext too short")
|
||||||
|
}
|
||||||
|
iv := encrypted[:aes.BlockSize]
|
||||||
|
encrypted = encrypted[aes.BlockSize:]
|
||||||
|
|
||||||
|
stream := cipher.NewCFBDecrypter(block, iv)
|
||||||
|
stream.XORKeyStream(encrypted, encrypted)
|
||||||
|
return encrypted, nil
|
||||||
|
}
|
||||||
|
|
||||||
|
func CustomEncryptAesCFBNoBlock(origData []byte, key []byte, iv []byte) ([]byte, error) {
|
||||||
|
if len(iv) != 16 {
|
||||||
|
return nil, errors.New("iv length must be 16")
|
||||||
|
}
|
||||||
|
block, err := aes.NewCipher(key)
|
||||||
|
if err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
encrypted := make([]byte, len(origData))
|
||||||
|
stream := cipher.NewCFBEncrypter(block, iv)
|
||||||
|
stream.XORKeyStream(encrypted, origData)
|
||||||
|
return encrypted, err
|
||||||
|
}
|
||||||
|
|
||||||
|
func CustomDecryptAesCFBNoBlock(encrypted []byte, key []byte, iv []byte) ([]byte, error) {
|
||||||
|
if len(iv) != 16 {
|
||||||
|
return nil, errors.New("iv length must be 16")
|
||||||
|
}
|
||||||
|
block, err := aes.NewCipher(key)
|
||||||
|
if err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
stream := cipher.NewCFBDecrypter(block, iv)
|
||||||
|
stream.XORKeyStream(encrypted, encrypted)
|
||||||
|
return encrypted, err
|
||||||
|
}
|
||||||
|
|
||||||
|
func EncryptAesCBC(data, key []byte, iv []byte, paddingType string) ([]byte, error) {
|
||||||
|
var content []byte
|
||||||
|
aesBlockEncrypter, err := aes.NewCipher(key)
|
||||||
|
switch paddingType {
|
||||||
|
case PKCS5PADDING:
|
||||||
|
content = PKCS5Padding(data, aesBlockEncrypter.BlockSize())
|
||||||
|
default:
|
||||||
|
return nil, errors.New("padding type not supported")
|
||||||
|
}
|
||||||
|
encrypted := make([]byte, len(content))
|
||||||
|
if err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
aesEncrypter := cipher.NewCBCEncrypter(aesBlockEncrypter, iv)
|
||||||
|
aesEncrypter.CryptBlocks(encrypted, content)
|
||||||
|
return encrypted, nil
|
||||||
|
}
|
||||||
|
|
||||||
|
func PKCS5Padding(cipherText []byte, blockSize int) []byte {
|
||||||
|
padding := blockSize - len(cipherText)%blockSize
|
||||||
|
padText := bytes.Repeat([]byte{byte(padding)}, padding)
|
||||||
|
return append(cipherText, padText...)
|
||||||
|
}
|
||||||
|
|
||||||
|
func PKCS5Trimming(encrypt []byte) []byte {
|
||||||
|
padding := encrypt[len(encrypt)-1]
|
||||||
|
if len(encrypt)-int(padding) < 0 {
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
return encrypt[:len(encrypt)-int(padding)]
|
||||||
|
}
|
||||||
|
|
||||||
|
func DecryptAesCBC(src, key []byte, iv []byte, paddingType string) (data []byte, err error) {
|
||||||
|
decrypted := make([]byte, len(src))
|
||||||
|
var aesBlockDecrypter cipher.Block
|
||||||
|
aesBlockDecrypter, err = aes.NewCipher(key)
|
||||||
|
if err != nil {
|
||||||
|
println(err.Error())
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
aesDecrypter := cipher.NewCBCDecrypter(aesBlockDecrypter, iv)
|
||||||
|
aesDecrypter.CryptBlocks(decrypted, src)
|
||||||
|
switch paddingType {
|
||||||
|
case PKCS5PADDING:
|
||||||
|
return PKCS5Trimming(decrypted), nil
|
||||||
|
default:
|
||||||
|
return nil, errors.New("padding type not supported")
|
||||||
|
}
|
||||||
|
}
|
@ -1,11 +1,45 @@
|
|||||||
golang.org/x/crypto v0.0.0-20220313003712-b769efc7c000 h1:SL+8VVnkqyshUSz5iNnXtrBQzvFF2SkROm6t5RczFAE=
|
github.com/yuin/goldmark v1.4.13/go.mod h1:6yULJ656Px+3vBD8DxQVa3kxgyrAnzto9xy5taEt/CY=
|
||||||
golang.org/x/crypto v0.0.0-20220313003712-b769efc7c000/go.mod h1:IxCIyHEi3zRg3s0A5j5BB6A9Jmi73HwBIUl50j+osU4=
|
golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2/go.mod h1:djNgcEr1/C05ACkg1iLfiJU5Ep61QUkGW8qpdssI0+w=
|
||||||
golang.org/x/net v0.0.0-20211112202133-69e39bad7dc2/go.mod h1:9nx3DQGgdP8bBQD5qxJ1jj9UTztislL4KSBs9R2vV5Y=
|
golang.org/x/crypto v0.0.0-20210921155107-089bfa567519/go.mod h1:GvvjBRRGRdwPK5ydBHafDWAxML/pGHZbMvKqRZ5+Abc=
|
||||||
|
golang.org/x/crypto v0.19.0/go.mod h1:Iy9bg/ha4yyC70EfRS8jz+B6ybOBKMaSxLj6P6oBDfU=
|
||||||
|
golang.org/x/crypto v0.21.0 h1:X31++rzVUdKhX5sWmSOFZxx8UW/ldWx55cbf08iNAMA=
|
||||||
|
golang.org/x/crypto v0.21.0/go.mod h1:0BP7YvVV9gBbVKyeTG0Gyn+gZm94bibOW5BjDEYAOMs=
|
||||||
|
golang.org/x/mod v0.6.0-dev.0.20220419223038-86c51ed26bb4/go.mod h1:jJ57K6gSWd91VN4djpZkiMVwK6gcyfeH4XE8wZrZaV4=
|
||||||
|
golang.org/x/mod v0.8.0/go.mod h1:iBbtSCu2XBx23ZKBPSOrRkjjQPZFPuis4dIYUhu/chs=
|
||||||
|
golang.org/x/net v0.0.0-20190620200207-3b0461eec859/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s=
|
||||||
|
golang.org/x/net v0.0.0-20210226172049-e18ecbb05110/go.mod h1:m0MpNAwzfU5UDzcl9v0D8zg8gWTRqZa9RBIspLL5mdg=
|
||||||
|
golang.org/x/net v0.0.0-20220722155237-a158d28d115b/go.mod h1:XRhObCWvk6IyKnWLug+ECip1KBveYUHfp+8e9klMJ9c=
|
||||||
|
golang.org/x/net v0.6.0/go.mod h1:2Tu9+aMcznHK/AK1HMvgo6xiTLG5rD5rZLDS+rp2Bjs=
|
||||||
|
golang.org/x/net v0.10.0/go.mod h1:0qNGK6F8kojg2nk9dLZ2mShWaEBan6FAoqfSigmmuDg=
|
||||||
|
golang.org/x/net v0.21.0/go.mod h1:bIjVDfnllIU7BJ2DNgfnXvpSvtn8VRwhlsaeUTyUS44=
|
||||||
|
golang.org/x/sync v0.0.0-20190423024810-112230192c58/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
|
||||||
|
golang.org/x/sync v0.0.0-20220722155255-886fb9371eb4/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
|
||||||
|
golang.org/x/sync v0.1.0/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
|
||||||
|
golang.org/x/sys v0.0.0-20190215142949-d0b11bdaac8a/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY=
|
||||||
golang.org/x/sys v0.0.0-20201119102817-f84b799fce68/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
|
golang.org/x/sys v0.0.0-20201119102817-f84b799fce68/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
|
||||||
golang.org/x/sys v0.0.0-20210423082822-04245dca01da/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
|
|
||||||
golang.org/x/sys v0.0.0-20210615035016-665e8c7367d1 h1:SrN+KX8Art/Sf4HNj6Zcz06G7VEz+7w9tdXTPOZ7+l4=
|
|
||||||
golang.org/x/sys v0.0.0-20210615035016-665e8c7367d1/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
|
golang.org/x/sys v0.0.0-20210615035016-665e8c7367d1/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
|
||||||
golang.org/x/term v0.0.0-20201126162022-7de9c90e9dd1 h1:v+OssWQX+hTHEmOBgwxdZxK4zHq3yOs8F9J7mk0PY8E=
|
golang.org/x/sys v0.0.0-20220520151302-bc2c85ada10a/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
|
||||||
|
golang.org/x/sys v0.0.0-20220722155257-8c9f86f7a55f/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
|
||||||
|
golang.org/x/sys v0.5.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
|
||||||
|
golang.org/x/sys v0.8.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
|
||||||
|
golang.org/x/sys v0.17.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA=
|
||||||
|
golang.org/x/sys v0.18.0 h1:DBdB3niSjOA/O0blCZBqDefyWNYveAYMNF1Wum0DYQ4=
|
||||||
|
golang.org/x/sys v0.18.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA=
|
||||||
golang.org/x/term v0.0.0-20201126162022-7de9c90e9dd1/go.mod h1:bj7SfCRtBDWHUb9snDiAeCFNEtKQo2Wmx5Cou7ajbmo=
|
golang.org/x/term v0.0.0-20201126162022-7de9c90e9dd1/go.mod h1:bj7SfCRtBDWHUb9snDiAeCFNEtKQo2Wmx5Cou7ajbmo=
|
||||||
golang.org/x/text v0.3.6/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ=
|
golang.org/x/term v0.0.0-20210927222741-03fcf44c2211/go.mod h1:jbD1KX2456YbFQfuXm/mYQcufACuNUgVhRMnK/tPxf8=
|
||||||
|
golang.org/x/term v0.5.0/go.mod h1:jMB1sMXY+tzblOD4FWmEbocvup2/aLOaQEp7JmGp78k=
|
||||||
|
golang.org/x/term v0.8.0/go.mod h1:xPskH00ivmX89bAKVGSKKtLOWNx2+17Eiy94tnKShWo=
|
||||||
|
golang.org/x/term v0.17.0/go.mod h1:lLRBjIVuehSbZlaOtGMbcMncT+aqLLLmKrsjNrUguwk=
|
||||||
|
golang.org/x/term v0.18.0 h1:FcHjZXDMxI8mM3nwhX9HlKop4C0YQvCVCdwYl2wOtE8=
|
||||||
|
golang.org/x/term v0.18.0/go.mod h1:ILwASektA3OnRv7amZ1xhE/KTR+u50pbXfZ03+6Nx58=
|
||||||
|
golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ=
|
||||||
|
golang.org/x/text v0.3.3/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ=
|
||||||
|
golang.org/x/text v0.3.7/go.mod h1:u+2+/6zg+i71rQMx5EYifcz6MCKuco9NR6JIITiCfzQ=
|
||||||
|
golang.org/x/text v0.7.0/go.mod h1:mrYo+phRRbMaCq/xk9113O4dZlRixOauAjOtrjsXDZ8=
|
||||||
|
golang.org/x/text v0.9.0/go.mod h1:e1OnstbJyHTd6l/uOt8jFFHp6TRDWZR/bV3emEE/zU8=
|
||||||
|
golang.org/x/text v0.14.0/go.mod h1:18ZOQIKpY8NJVqYksKHtTdi31H5itFRjB5/qKTNYzSU=
|
||||||
golang.org/x/tools v0.0.0-20180917221912-90fa682c2a6e/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ=
|
golang.org/x/tools v0.0.0-20180917221912-90fa682c2a6e/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ=
|
||||||
|
golang.org/x/tools v0.0.0-20191119224855-298f0cb1881e/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo=
|
||||||
|
golang.org/x/tools v0.1.12/go.mod h1:hNGJHUnrk76NpqgfD5Aqm5Crs+Hm0VOH/i9J2+nxYbc=
|
||||||
|
golang.org/x/tools v0.6.0/go.mod h1:Xwgl3UAJ/d3gWutnCtw505GrjyAbvKui8lOU390QaIU=
|
||||||
|
golang.org/x/xerrors v0.0.0-20190717185122-a985d3407aa7/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0=
|
||||||
|
@ -0,0 +1,87 @@
|
|||||||
|
package starcrypto
|
||||||
|
|
||||||
|
import (
|
||||||
|
"crypto/hmac"
|
||||||
|
"crypto/md5"
|
||||||
|
"crypto/sha1"
|
||||||
|
"crypto/sha256"
|
||||||
|
"crypto/sha512"
|
||||||
|
"encoding/hex"
|
||||||
|
"golang.org/x/crypto/md4"
|
||||||
|
"golang.org/x/crypto/ripemd160"
|
||||||
|
"hash"
|
||||||
|
)
|
||||||
|
|
||||||
|
func chmac(message, key []byte, f func() hash.Hash) []byte {
|
||||||
|
h := hmac.New(f, []byte(key))
|
||||||
|
h.Write([]byte(message))
|
||||||
|
return h.Sum(nil)
|
||||||
|
}
|
||||||
|
|
||||||
|
func chmacStr(message, key []byte, f func() hash.Hash) string {
|
||||||
|
return hex.EncodeToString(chmac(message, key, f))
|
||||||
|
}
|
||||||
|
|
||||||
|
func HmacMd4(message, key []byte) []byte {
|
||||||
|
return chmac(message, key, md4.New)
|
||||||
|
}
|
||||||
|
|
||||||
|
func HmacMd4Str(message, key []byte) string {
|
||||||
|
return chmacStr(message, key, md4.New)
|
||||||
|
}
|
||||||
|
|
||||||
|
func HmacMd5(message, key []byte) []byte {
|
||||||
|
return chmac(message, key, md5.New)
|
||||||
|
}
|
||||||
|
|
||||||
|
func HmacMd5Str(message, key []byte) string {
|
||||||
|
return chmacStr(message, key, md5.New)
|
||||||
|
}
|
||||||
|
|
||||||
|
func HmacSHA1(message, key []byte) []byte {
|
||||||
|
return chmac(message, key, sha1.New)
|
||||||
|
}
|
||||||
|
|
||||||
|
func HmacSHA1Str(message, key []byte) string {
|
||||||
|
return chmacStr(message, key, sha1.New)
|
||||||
|
}
|
||||||
|
|
||||||
|
func HmacSHA256(message, key []byte) []byte {
|
||||||
|
return chmac(message, key, sha256.New)
|
||||||
|
}
|
||||||
|
|
||||||
|
func HmacSHA256Str(message, key []byte) string {
|
||||||
|
return chmacStr(message, key, sha256.New)
|
||||||
|
}
|
||||||
|
|
||||||
|
func HmacSHA384(message, key []byte) []byte {
|
||||||
|
return chmac(message, key, sha512.New384)
|
||||||
|
}
|
||||||
|
|
||||||
|
func HmacSHA384Str(message, key []byte) string {
|
||||||
|
return chmacStr(message, key, sha512.New384)
|
||||||
|
}
|
||||||
|
|
||||||
|
func HmacSHA512(message, key []byte) []byte {
|
||||||
|
return chmac(message, key, sha512.New)
|
||||||
|
}
|
||||||
|
|
||||||
|
func HmacSHA512Str(message, key []byte) string {
|
||||||
|
return chmacStr(message, key, sha512.New)
|
||||||
|
}
|
||||||
|
|
||||||
|
func HmacSHA224(message, key []byte) []byte {
|
||||||
|
return chmac(message, key, sha256.New224)
|
||||||
|
}
|
||||||
|
|
||||||
|
func HmacSHA224Str(message, key []byte) string {
|
||||||
|
return chmacStr(message, key, sha256.New224)
|
||||||
|
}
|
||||||
|
|
||||||
|
func HmacRipeMd160(message, key []byte) []byte {
|
||||||
|
return chmac(message, key, ripemd160.New)
|
||||||
|
}
|
||||||
|
|
||||||
|
func HmacRipeMd160Str(message, key []byte) string {
|
||||||
|
return chmacStr(message, key, ripemd160.New)
|
||||||
|
}
|
@ -0,0 +1,27 @@
|
|||||||
|
package starcrypto
|
||||||
|
|
||||||
|
import (
|
||||||
|
"crypto/md5"
|
||||||
|
"golang.org/x/crypto/md4"
|
||||||
|
)
|
||||||
|
|
||||||
|
// MD5 输出MD5校验值
|
||||||
|
func Md5(bstr []byte) []byte {
|
||||||
|
md5sum := md5.New()
|
||||||
|
md5sum.Write(bstr)
|
||||||
|
return md5sum.Sum(nil)
|
||||||
|
}
|
||||||
|
|
||||||
|
func Md5Str(bstr []byte) string {
|
||||||
|
return String(Md5(bstr))
|
||||||
|
}
|
||||||
|
|
||||||
|
func Md4(bstr []byte) []byte {
|
||||||
|
md4sum := md4.New()
|
||||||
|
md4sum.Write(bstr)
|
||||||
|
return md4sum.Sum(nil)
|
||||||
|
}
|
||||||
|
|
||||||
|
func Md4Str(bstr []byte) string {
|
||||||
|
return String(Md4(bstr))
|
||||||
|
}
|
@ -0,0 +1,15 @@
|
|||||||
|
package starcrypto
|
||||||
|
|
||||||
|
import (
|
||||||
|
"golang.org/x/crypto/ripemd160"
|
||||||
|
)
|
||||||
|
|
||||||
|
func RipeMd160(bstr []byte) []byte {
|
||||||
|
ripe := ripemd160.New()
|
||||||
|
ripe.Write(bstr)
|
||||||
|
return ripe.Sum(nil)
|
||||||
|
}
|
||||||
|
|
||||||
|
func RipeMd160Str(bstr []byte) string {
|
||||||
|
return String(RipeMd160(bstr))
|
||||||
|
}
|
@ -0,0 +1,62 @@
|
|||||||
|
package starcrypto
|
||||||
|
|
||||||
|
import (
|
||||||
|
"crypto/sha1"
|
||||||
|
"crypto/sha256"
|
||||||
|
"crypto/sha512"
|
||||||
|
)
|
||||||
|
|
||||||
|
// SHA512 输出SHA512校验值
|
||||||
|
func Sha512(bstr []byte) []byte {
|
||||||
|
shasum := sha512.New()
|
||||||
|
shasum.Write(bstr)
|
||||||
|
return shasum.Sum(nil)
|
||||||
|
}
|
||||||
|
|
||||||
|
func Sha512Str(bstr []byte) string {
|
||||||
|
return String(Sha512(bstr))
|
||||||
|
}
|
||||||
|
|
||||||
|
// SHA384 输出SHA384校验值
|
||||||
|
func Sha384(bstr []byte) []byte {
|
||||||
|
shasum := sha512.New384()
|
||||||
|
shasum.Write(bstr)
|
||||||
|
return shasum.Sum(nil)
|
||||||
|
}
|
||||||
|
|
||||||
|
func Sha384Str(bstr []byte) string {
|
||||||
|
return String(Sha384(bstr))
|
||||||
|
}
|
||||||
|
|
||||||
|
// SHA256 输出SHA256校验值
|
||||||
|
func Sha256(bstr []byte) []byte {
|
||||||
|
shasum := sha256.New()
|
||||||
|
shasum.Write(bstr)
|
||||||
|
return shasum.Sum(nil)
|
||||||
|
}
|
||||||
|
|
||||||
|
func Sha256Str(bstr []byte) string {
|
||||||
|
return String(Sha256(bstr))
|
||||||
|
}
|
||||||
|
|
||||||
|
// SHA224 输出SHA224校验值
|
||||||
|
func Sha224(bstr []byte) []byte {
|
||||||
|
shasum := sha256.New224()
|
||||||
|
shasum.Write(bstr)
|
||||||
|
return shasum.Sum(nil)
|
||||||
|
}
|
||||||
|
|
||||||
|
func Sha224Str(bstr []byte) string {
|
||||||
|
return String(Sha224(bstr))
|
||||||
|
}
|
||||||
|
|
||||||
|
// SHA1 输出SHA1校验值
|
||||||
|
func Sha1(bstr []byte) []byte {
|
||||||
|
shasum := sha1.New()
|
||||||
|
shasum.Write(bstr)
|
||||||
|
return shasum.Sum(nil)
|
||||||
|
}
|
||||||
|
|
||||||
|
func Sha1Str(bstr []byte) string {
|
||||||
|
return String(Sha512(bstr))
|
||||||
|
}
|
@ -0,0 +1,15 @@
|
|||||||
|
package starcrypto
|
||||||
|
|
||||||
|
import (
|
||||||
|
"b612.me/starcrypto/sm3"
|
||||||
|
)
|
||||||
|
|
||||||
|
func SM3(bstr []byte) []byte {
|
||||||
|
sm3sum := sm3.New()
|
||||||
|
sm3sum.Write(bstr)
|
||||||
|
return sm3sum.Sum(nil)
|
||||||
|
}
|
||||||
|
|
||||||
|
func SM3Str(bstr []byte) string {
|
||||||
|
return String(SM3(bstr))
|
||||||
|
}
|
@ -0,0 +1,259 @@
|
|||||||
|
/*
|
||||||
|
Copyright Suzhou Tongji Fintech Research Institute 2017 All Rights Reserved.
|
||||||
|
Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
|
you may not use this file except in compliance with the License.
|
||||||
|
You may obtain a copy of the License at
|
||||||
|
|
||||||
|
http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
|
||||||
|
Unless required by applicable law or agreed to in writing, software
|
||||||
|
distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
|
See the License for the specific language governing permissions and
|
||||||
|
limitations under the License.
|
||||||
|
*/
|
||||||
|
|
||||||
|
package sm3
|
||||||
|
|
||||||
|
import (
|
||||||
|
"encoding/binary"
|
||||||
|
"hash"
|
||||||
|
)
|
||||||
|
|
||||||
|
type SM3 struct {
|
||||||
|
digest [8]uint32 // digest represents the partial evaluation of V
|
||||||
|
length uint64 // length of the message
|
||||||
|
unhandleMsg []byte // uint8 //
|
||||||
|
}
|
||||||
|
|
||||||
|
func (sm3 *SM3) ff0(x, y, z uint32) uint32 { return x ^ y ^ z }
|
||||||
|
|
||||||
|
func (sm3 *SM3) ff1(x, y, z uint32) uint32 { return (x & y) | (x & z) | (y & z) }
|
||||||
|
|
||||||
|
func (sm3 *SM3) gg0(x, y, z uint32) uint32 { return x ^ y ^ z }
|
||||||
|
|
||||||
|
func (sm3 *SM3) gg1(x, y, z uint32) uint32 { return (x & y) | (^x & z) }
|
||||||
|
|
||||||
|
func (sm3 *SM3) p0(x uint32) uint32 { return x ^ sm3.leftRotate(x, 9) ^ sm3.leftRotate(x, 17) }
|
||||||
|
|
||||||
|
func (sm3 *SM3) p1(x uint32) uint32 { return x ^ sm3.leftRotate(x, 15) ^ sm3.leftRotate(x, 23) }
|
||||||
|
|
||||||
|
func (sm3 *SM3) leftRotate(x uint32, i uint32) uint32 { return x<<(i%32) | x>>(32-i%32) }
|
||||||
|
|
||||||
|
func (sm3 *SM3) pad() []byte {
|
||||||
|
msg := sm3.unhandleMsg
|
||||||
|
msg = append(msg, 0x80) // Append '1'
|
||||||
|
blockSize := 64 // Append until the resulting message length (in bits) is congruent to 448 (mod 512)
|
||||||
|
for len(msg)%blockSize != 56 {
|
||||||
|
msg = append(msg, 0x00)
|
||||||
|
}
|
||||||
|
// append message length
|
||||||
|
msg = append(msg, uint8(sm3.length>>56&0xff))
|
||||||
|
msg = append(msg, uint8(sm3.length>>48&0xff))
|
||||||
|
msg = append(msg, uint8(sm3.length>>40&0xff))
|
||||||
|
msg = append(msg, uint8(sm3.length>>32&0xff))
|
||||||
|
msg = append(msg, uint8(sm3.length>>24&0xff))
|
||||||
|
msg = append(msg, uint8(sm3.length>>16&0xff))
|
||||||
|
msg = append(msg, uint8(sm3.length>>8&0xff))
|
||||||
|
msg = append(msg, uint8(sm3.length>>0&0xff))
|
||||||
|
|
||||||
|
if len(msg)%64 != 0 {
|
||||||
|
panic("------SM3 Pad: error msgLen =")
|
||||||
|
}
|
||||||
|
return msg
|
||||||
|
}
|
||||||
|
|
||||||
|
func (sm3 *SM3) update(msg []byte) {
|
||||||
|
var w [68]uint32
|
||||||
|
var w1 [64]uint32
|
||||||
|
|
||||||
|
a, b, c, d, e, f, g, h := sm3.digest[0], sm3.digest[1], sm3.digest[2], sm3.digest[3], sm3.digest[4], sm3.digest[5], sm3.digest[6], sm3.digest[7]
|
||||||
|
for len(msg) >= 64 {
|
||||||
|
for i := 0; i < 16; i++ {
|
||||||
|
w[i] = binary.BigEndian.Uint32(msg[4*i : 4*(i+1)])
|
||||||
|
}
|
||||||
|
for i := 16; i < 68; i++ {
|
||||||
|
w[i] = sm3.p1(w[i-16]^w[i-9]^sm3.leftRotate(w[i-3], 15)) ^ sm3.leftRotate(w[i-13], 7) ^ w[i-6]
|
||||||
|
}
|
||||||
|
for i := 0; i < 64; i++ {
|
||||||
|
w1[i] = w[i] ^ w[i+4]
|
||||||
|
}
|
||||||
|
A, B, C, D, E, F, G, H := a, b, c, d, e, f, g, h
|
||||||
|
for i := 0; i < 16; i++ {
|
||||||
|
SS1 := sm3.leftRotate(sm3.leftRotate(A, 12)+E+sm3.leftRotate(0x79cc4519, uint32(i)), 7)
|
||||||
|
SS2 := SS1 ^ sm3.leftRotate(A, 12)
|
||||||
|
TT1 := sm3.ff0(A, B, C) + D + SS2 + w1[i]
|
||||||
|
TT2 := sm3.gg0(E, F, G) + H + SS1 + w[i]
|
||||||
|
D = C
|
||||||
|
C = sm3.leftRotate(B, 9)
|
||||||
|
B = A
|
||||||
|
A = TT1
|
||||||
|
H = G
|
||||||
|
G = sm3.leftRotate(F, 19)
|
||||||
|
F = E
|
||||||
|
E = sm3.p0(TT2)
|
||||||
|
}
|
||||||
|
for i := 16; i < 64; i++ {
|
||||||
|
SS1 := sm3.leftRotate(sm3.leftRotate(A, 12)+E+sm3.leftRotate(0x7a879d8a, uint32(i)), 7)
|
||||||
|
SS2 := SS1 ^ sm3.leftRotate(A, 12)
|
||||||
|
TT1 := sm3.ff1(A, B, C) + D + SS2 + w1[i]
|
||||||
|
TT2 := sm3.gg1(E, F, G) + H + SS1 + w[i]
|
||||||
|
D = C
|
||||||
|
C = sm3.leftRotate(B, 9)
|
||||||
|
B = A
|
||||||
|
A = TT1
|
||||||
|
H = G
|
||||||
|
G = sm3.leftRotate(F, 19)
|
||||||
|
F = E
|
||||||
|
E = sm3.p0(TT2)
|
||||||
|
}
|
||||||
|
a ^= A
|
||||||
|
b ^= B
|
||||||
|
c ^= C
|
||||||
|
d ^= D
|
||||||
|
e ^= E
|
||||||
|
f ^= F
|
||||||
|
g ^= G
|
||||||
|
h ^= H
|
||||||
|
msg = msg[64:]
|
||||||
|
}
|
||||||
|
sm3.digest[0], sm3.digest[1], sm3.digest[2], sm3.digest[3], sm3.digest[4], sm3.digest[5], sm3.digest[6], sm3.digest[7] = a, b, c, d, e, f, g, h
|
||||||
|
}
|
||||||
|
func (sm3 *SM3) update2(msg []byte) [8]uint32 {
|
||||||
|
var w [68]uint32
|
||||||
|
var w1 [64]uint32
|
||||||
|
|
||||||
|
a, b, c, d, e, f, g, h := sm3.digest[0], sm3.digest[1], sm3.digest[2], sm3.digest[3], sm3.digest[4], sm3.digest[5], sm3.digest[6], sm3.digest[7]
|
||||||
|
for len(msg) >= 64 {
|
||||||
|
for i := 0; i < 16; i++ {
|
||||||
|
w[i] = binary.BigEndian.Uint32(msg[4*i : 4*(i+1)])
|
||||||
|
}
|
||||||
|
for i := 16; i < 68; i++ {
|
||||||
|
w[i] = sm3.p1(w[i-16]^w[i-9]^sm3.leftRotate(w[i-3], 15)) ^ sm3.leftRotate(w[i-13], 7) ^ w[i-6]
|
||||||
|
}
|
||||||
|
for i := 0; i < 64; i++ {
|
||||||
|
w1[i] = w[i] ^ w[i+4]
|
||||||
|
}
|
||||||
|
A, B, C, D, E, F, G, H := a, b, c, d, e, f, g, h
|
||||||
|
for i := 0; i < 16; i++ {
|
||||||
|
SS1 := sm3.leftRotate(sm3.leftRotate(A, 12)+E+sm3.leftRotate(0x79cc4519, uint32(i)), 7)
|
||||||
|
SS2 := SS1 ^ sm3.leftRotate(A, 12)
|
||||||
|
TT1 := sm3.ff0(A, B, C) + D + SS2 + w1[i]
|
||||||
|
TT2 := sm3.gg0(E, F, G) + H + SS1 + w[i]
|
||||||
|
D = C
|
||||||
|
C = sm3.leftRotate(B, 9)
|
||||||
|
B = A
|
||||||
|
A = TT1
|
||||||
|
H = G
|
||||||
|
G = sm3.leftRotate(F, 19)
|
||||||
|
F = E
|
||||||
|
E = sm3.p0(TT2)
|
||||||
|
}
|
||||||
|
for i := 16; i < 64; i++ {
|
||||||
|
SS1 := sm3.leftRotate(sm3.leftRotate(A, 12)+E+sm3.leftRotate(0x7a879d8a, uint32(i)), 7)
|
||||||
|
SS2 := SS1 ^ sm3.leftRotate(A, 12)
|
||||||
|
TT1 := sm3.ff1(A, B, C) + D + SS2 + w1[i]
|
||||||
|
TT2 := sm3.gg1(E, F, G) + H + SS1 + w[i]
|
||||||
|
D = C
|
||||||
|
C = sm3.leftRotate(B, 9)
|
||||||
|
B = A
|
||||||
|
A = TT1
|
||||||
|
H = G
|
||||||
|
G = sm3.leftRotate(F, 19)
|
||||||
|
F = E
|
||||||
|
E = sm3.p0(TT2)
|
||||||
|
}
|
||||||
|
a ^= A
|
||||||
|
b ^= B
|
||||||
|
c ^= C
|
||||||
|
d ^= D
|
||||||
|
e ^= E
|
||||||
|
f ^= F
|
||||||
|
g ^= G
|
||||||
|
h ^= H
|
||||||
|
msg = msg[64:]
|
||||||
|
}
|
||||||
|
var digest [8]uint32
|
||||||
|
digest[0], digest[1], digest[2], digest[3], digest[4], digest[5], digest[6], digest[7] = a, b, c, d, e, f, g, h
|
||||||
|
return digest
|
||||||
|
}
|
||||||
|
|
||||||
|
// 创建哈希计算实例
|
||||||
|
func New() hash.Hash {
|
||||||
|
var sm3 SM3
|
||||||
|
|
||||||
|
sm3.Reset()
|
||||||
|
return &sm3
|
||||||
|
}
|
||||||
|
|
||||||
|
// BlockSize returns the hash's underlying block size.
|
||||||
|
// The Write method must be able to accept any amount
|
||||||
|
// of data, but it may operate more efficiently if all writes
|
||||||
|
// are a multiple of the block size.
|
||||||
|
func (sm3 *SM3) BlockSize() int { return 64 }
|
||||||
|
|
||||||
|
// Size returns the number of bytes Sum will return.
|
||||||
|
func (sm3 *SM3) Size() int { return 32 }
|
||||||
|
|
||||||
|
// Reset clears the internal state by zeroing bytes in the state buffer.
|
||||||
|
// This can be skipped for a newly-created hash state; the default zero-allocated state is correct.
|
||||||
|
func (sm3 *SM3) Reset() {
|
||||||
|
// Reset digest
|
||||||
|
sm3.digest[0] = 0x7380166f
|
||||||
|
sm3.digest[1] = 0x4914b2b9
|
||||||
|
sm3.digest[2] = 0x172442d7
|
||||||
|
sm3.digest[3] = 0xda8a0600
|
||||||
|
sm3.digest[4] = 0xa96f30bc
|
||||||
|
sm3.digest[5] = 0x163138aa
|
||||||
|
sm3.digest[6] = 0xe38dee4d
|
||||||
|
sm3.digest[7] = 0xb0fb0e4e
|
||||||
|
|
||||||
|
sm3.length = 0 // Reset numberic states
|
||||||
|
sm3.unhandleMsg = []byte{}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Write (via the embedded io.Writer interface) adds more data to the running hash.
|
||||||
|
// It never returns an error.
|
||||||
|
func (sm3 *SM3) Write(p []byte) (int, error) {
|
||||||
|
toWrite := len(p)
|
||||||
|
sm3.length += uint64(len(p) * 8)
|
||||||
|
msg := append(sm3.unhandleMsg, p...)
|
||||||
|
nblocks := len(msg) / sm3.BlockSize()
|
||||||
|
sm3.update(msg)
|
||||||
|
// Update unhandleMsg
|
||||||
|
sm3.unhandleMsg = msg[nblocks*sm3.BlockSize():]
|
||||||
|
|
||||||
|
return toWrite, nil
|
||||||
|
}
|
||||||
|
|
||||||
|
// 返回SM3哈希算法摘要值
|
||||||
|
// Sum appends the current hash to b and returns the resulting slice.
|
||||||
|
// It does not change the underlying hash state.
|
||||||
|
func (sm3 *SM3) Sum(in []byte) []byte {
|
||||||
|
_, _ = sm3.Write(in)
|
||||||
|
msg := sm3.pad()
|
||||||
|
//Finalize
|
||||||
|
digest := sm3.update2(msg)
|
||||||
|
|
||||||
|
// save hash to in
|
||||||
|
needed := sm3.Size()
|
||||||
|
if cap(in)-len(in) < needed {
|
||||||
|
newIn := make([]byte, len(in), len(in)+needed)
|
||||||
|
copy(newIn, in)
|
||||||
|
in = newIn
|
||||||
|
}
|
||||||
|
out := in[len(in) : len(in)+needed]
|
||||||
|
for i := 0; i < 8; i++ {
|
||||||
|
binary.BigEndian.PutUint32(out[i*4:], digest[i])
|
||||||
|
}
|
||||||
|
return out
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
func Sm3Sum(data []byte) []byte {
|
||||||
|
var sm3 SM3
|
||||||
|
|
||||||
|
sm3.Reset()
|
||||||
|
_, _ = sm3.Write(data)
|
||||||
|
return sm3.Sum(nil)
|
||||||
|
}
|
@ -0,0 +1,64 @@
|
|||||||
|
/*
|
||||||
|
Copyright Suzhou Tongji Fintech Research Institute 2017 All Rights Reserved.
|
||||||
|
Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
|
you may not use this file except in compliance with the License.
|
||||||
|
You may obtain a copy of the License at
|
||||||
|
|
||||||
|
http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
|
||||||
|
Unless required by applicable law or agreed to in writing, software
|
||||||
|
distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
|
See the License for the specific language governing permissions and
|
||||||
|
limitations under the License.
|
||||||
|
*/
|
||||||
|
|
||||||
|
package sm3
|
||||||
|
|
||||||
|
import (
|
||||||
|
"fmt"
|
||||||
|
"io/ioutil"
|
||||||
|
"os"
|
||||||
|
"testing"
|
||||||
|
)
|
||||||
|
|
||||||
|
func byteToString(b []byte) string {
|
||||||
|
ret := ""
|
||||||
|
for i := 0; i < len(b); i++ {
|
||||||
|
ret += fmt.Sprintf("%02x", b[i])
|
||||||
|
}
|
||||||
|
fmt.Println("ret = ", ret)
|
||||||
|
return ret
|
||||||
|
}
|
||||||
|
func TestSm3(t *testing.T) {
|
||||||
|
msg := []byte("test")
|
||||||
|
err := ioutil.WriteFile("ifile", msg, os.FileMode(0644)) // 生成测试文件
|
||||||
|
if err != nil {
|
||||||
|
t.Fatal(err)
|
||||||
|
}
|
||||||
|
msg, err = ioutil.ReadFile("ifile")
|
||||||
|
if err != nil {
|
||||||
|
t.Fatal(err)
|
||||||
|
}
|
||||||
|
hw := New()
|
||||||
|
hw.Write(msg)
|
||||||
|
hash := hw.Sum(nil)
|
||||||
|
fmt.Println(hash)
|
||||||
|
fmt.Printf("hash = %d\n", len(hash))
|
||||||
|
fmt.Printf("%s\n", byteToString(hash))
|
||||||
|
hash1 := Sm3Sum(msg)
|
||||||
|
fmt.Println(hash1)
|
||||||
|
fmt.Printf("%s\n", byteToString(hash1))
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
func BenchmarkSm3(t *testing.B) {
|
||||||
|
t.ReportAllocs()
|
||||||
|
msg := []byte("test")
|
||||||
|
hw := New()
|
||||||
|
for i := 0; i < t.N; i++ {
|
||||||
|
|
||||||
|
hw.Sum(nil)
|
||||||
|
Sm3Sum(msg)
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue