2016-07-22 20:15:38 +02:00
|
|
|
// Copyright 2013 The Go Authors. All rights reserved.
|
2013-07-16 08:54:42 +02:00
|
|
|
// Use of this source code is governed by a BSD-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
2016-08-06 02:36:33 +02:00
|
|
|
// +build ignore
|
2019-01-18 20:04:36 +01:00
|
|
|
// +build amd64 amd64p32 386 arm ppc64le ppc64 s390x arm64
|
2013-07-16 08:54:42 +02:00
|
|
|
|
|
|
|
package md5
|
|
|
|
|
2019-01-18 20:04:36 +01:00
|
|
|
const haveAsm = true
|
|
|
|
|
2013-11-06 20:49:01 +01:00
|
|
|
//go:noescape
|
|
|
|
|
2013-07-16 08:54:42 +02:00
|
|
|
func block(dig *digest, p []byte)
|