rclone/vendor/golang.org/x/crypto/poly1305/sum_noasm.go

14 lines
343 B
Go
Raw Normal View History

2018-06-17 18:59:12 +02: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-25 15:20:57 +01:00
// +build s390x,!go1.11 !amd64,!s390x,!ppc64le gccgo purego
2018-06-17 18:59:12 +02:00
package poly1305
func sum(out *[TagSize]byte, msg []byte, key *[32]byte) {
2019-04-13 14:47:57 +02:00
h := newMAC(key)
h.Write(msg)
h.Sum(out)
2018-06-17 18:59:12 +02:00
}