2018-11-12 23:02:07 +00: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.
|
|
|
|
|
2019-06-16 21:33:25 +00:00
|
|
|
// +build s390x,!go1.11 !arm,!amd64,!s390x,!ppc64le gccgo appengine nacl
|
2018-11-12 23:02:07 +00:00
|
|
|
|
|
|
|
package poly1305
|
|
|
|
|
2020-01-09 20:02:56 +00:00
|
|
|
func sum(out *[TagSize]byte, msg []byte, key *[32]byte) {
|
2019-05-30 10:20:56 +00:00
|
|
|
h := newMAC(key)
|
|
|
|
h.Write(msg)
|
|
|
|
h.Sum(out)
|
2018-11-12 23:02:07 +00:00
|
|
|
}
|