2014-06-06 22:37:27 +00:00
|
|
|
// Copyright 2014 The Go Authors. All rights reserved.
|
|
|
|
// Use of this source code is governed by a BSD-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
2021-07-30 14:28:58 -07:00
|
|
|
//-go:build !amd64 && !386 && !arm && !s390x && !arm64
|
2014-06-06 22:37:27 +00:00
|
|
|
|
|
|
|
package sha1
|
|
|
|
|
2022-02-11 14:53:56 -08:00
|
|
|
func block(dig *digest, p []byte) {
|
|
|
|
blockGeneric(dig, p)
|
|
|
|
}
|