gmsm/sm3/sm3block_generic.go

12 lines
297 B
Go
Raw Normal View History

2024-09-09 15:47:42 +08:00
// Copyright 2021 Sun Yimin. All rights reserved.
// Use of this source code is governed by a MIT-style
// license that can be found in the LICENSE file.
2024-09-10 09:00:38 +08:00
//go:build purego || !(amd64 || arm64 || ppc64 || ppc64le || s390x)
2022-01-21 11:24:10 +08:00
package sm3
func block(dig *digest, p []byte) {
blockGeneric(dig, p)
}