| 21 | } |
| 22 | |
| 23 | type sm3Digest struct { |
| 24 | h [8]uint32 |
| 25 | x [sm3BlockSize]byte |
| 26 | nx int |
| 27 | len uint64 |
| 28 | } |
| 29 | |
| 30 | // Sm3 returns a new hash.Hash computing the SM3 checksum. |
| 31 | // Play: https://go.dev/play/p/zDAQpteAiOc |
nothing calls this directly
no outgoing calls
no test coverage detected