2018-10-05 05:35:09 -04: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-04-16 11:51:12 -04:00
|
|
|
// +build s390x,!go1.11 !amd64,!s390x,!ppc64le gccgo purego
|
2018-10-05 05:35:09 -04:00
|
|
|
|
|
|
|
package poly1305
|
|
|
|
|
2020-01-29 05:25:09 -05:00
|
|
|
func sum(out *[TagSize]byte, msg []byte, key *[32]byte) {
|
2019-04-03 15:06:12 -04:00
|
|
|
h := newMAC(key)
|
|
|
|
h.Write(msg)
|
|
|
|
h.Sum(out)
|
2018-10-05 05:35:09 -04:00
|
|
|
}
|