Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/mengzhuo/sm3

SM3密码杂凑算法
https://github.com/mengzhuo/sm3

golang sm3

Last synced: about 2 months ago
JSON representation

SM3密码杂凑算法

Awesome Lists containing this project

README

        

sm3
=======

[![Go](https://github.com/mengzhuo/sm3/actions/workflows/go.yml/badge.svg)](https://github.com/mengzhuo/sm3/actions/workflows/go.yml)
[![GoDoc](https://godoc.org/github.com/mengzhuo/sm3?status.svg)](https://godoc.org/github.com/mengzhuo/sm3)

Go implement of sm3 hash algorithm

Example
--------

```
h := sm3.New()
data := "The answer to the ultimate question of life, the universe and everything is 42."
io.WriteString(h, data)
fmt.Printf("%x", h.Sum(nil))
```