2019-03-27 19:15:23 +08:00
|
|
|
// Copyright 2018 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.
|
|
|
|
|
2020-02-28 10:51:18 +01:00
|
|
|
// +build s390x,!go1.11 !amd64,!s390x,!ppc64le gccgo purego
|
2019-03-27 19:15:23 +08:00
|
|
|
|
|
|
|
package poly1305
|
|
|
|
|
2019-11-20 00:30:46 -05:00
|
|
|
func sum(out *[TagSize]byte, msg []byte, key *[32]byte) {
|
2019-05-13 08:38:53 -07:00
|
|
|
h := newMAC(key)
|
|
|
|
h.Write(msg)
|
|
|
|
h.Sum(out)
|
2019-03-27 19:15:23 +08:00
|
|
|
}
|