summaryrefslogtreecommitdiff
path: root/vendor/golang.org/x/crypto/poly1305/sum_noasm.go
blob: 2b55a29c5030e01c56c60913585bdd61dfac8ec7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// 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.

// At this point only s390x has an assembly implementation of sum. All other
// platforms have assembly implementations of mac, and just define sum as using
// that through New. Once s390x is ported, this file can be deleted and the body
// of sum moved into Sum.

// +build !go1.11 !s390x gccgo purego

package poly1305

func sum(out *[TagSize]byte, msg []byte, key *[32]byte) {
	h := New(key)
	h.Write(msg)
	h.Sum(out[:0])
}