blob: 5dc321c2f39e67863917e0cbe6b7b76aa5361669 [file] [log] [blame]
Adam Langley4139edb2016-01-13 15:00:54 -08001// Copyright 2015 The Go Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style
3// license that can be found in the LICENSE file.
4
Robert Sloan6f79a502017-04-03 09:16:40 -07005// +build arm,!gccgo,!appengine,!nacl
Adam Langley4139edb2016-01-13 15:00:54 -08006
7package poly1305
8
Robert Sloan6f79a502017-04-03 09:16:40 -07009// This function is implemented in sum_arm.s
Adam Langley4139edb2016-01-13 15:00:54 -080010//go:noescape
Adam Langley4139edb2016-01-13 15:00:54 -080011func poly1305_auth_armv6(out *[16]byte, m *byte, mlen uint32, key *[32]byte)
12
13// Sum generates an authenticator for m using a one-time key and puts the
14// 16-byte result into out. Authenticating two different messages with the same
15// key allows an attacker to forge messages at will.
16func Sum(out *[16]byte, m []byte, key *[32]byte) {
17 var mPtr *byte
18 if len(m) > 0 {
19 mPtr = &m[0]
20 }
21 poly1305_auth_armv6(out, mPtr, uint32(len(m)), key)
22}