2019-10-28 22:10:20 +01: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-30 04:02:15 +02:00
|
|
|
// +build s390x,!go1.11 !amd64,!s390x,!ppc64le gccgo purego
|
2019-10-28 22:10:20 +01:00
|
|
|
|
|
|
|
package poly1305
|
|
|
|
|
2020-04-30 04:02:15 +02:00
|
|
|
func sum(out *[TagSize]byte, msg []byte, key *[32]byte) {
|
2019-10-28 22:10:20 +01:00
|
|
|
h := newMAC(key)
|
|
|
|
h.Write(msg)
|
|
|
|
h.Sum(out)
|
|
|
|
}
|