5
0
mirror of https://github.com/cwinfo/matterbridge.git synced 2024-09-21 06:56:57 +00:00
matterbridge/vendor/golang.org/x/crypto/poly1305/sum_arm.go

20 lines
517 B
Go
Raw Normal View History

2016-09-19 18:53:26 +00:00
// Copyright 2015 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.
// +build arm,!gccgo,!appengine,!nacl
2016-09-19 18:53:26 +00:00
package poly1305
2020-01-09 20:02:56 +00:00
// poly1305_auth_armv6 is implemented in sum_arm.s
2016-09-19 18:53:26 +00:00
//go:noescape
func poly1305_auth_armv6(out *[16]byte, m *byte, mlen uint32, key *[32]byte)
2020-01-09 20:02:56 +00:00
func sum(out *[16]byte, m []byte, key *[32]byte) {
2016-09-19 18:53:26 +00:00
var mPtr *byte
if len(m) > 0 {
mPtr = &m[0]
}
poly1305_auth_armv6(out, mPtr, uint32(len(m)), key)
}