5
0
mirror of https://github.com/cwinfo/matterbridge.git synced 2024-09-20 12:32:30 +00:00
matterbridge/vendor/golang.org/x/crypto/poly1305/sum_ppc64le.go

48 lines
1.1 KiB
Go
Raw Normal View History

2019-06-16 21:33:25 +00:00
// Copyright 2019 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-05-23 22:06:21 +00:00
// +build !gccgo,!purego
2019-06-16 21:33:25 +00:00
package poly1305
//go:noescape
2020-01-09 20:02:56 +00:00
func update(state *macState, msg []byte)
2019-06-16 21:33:25 +00:00
2020-01-09 20:02:56 +00:00
// mac is a wrapper for macGeneric that redirects calls that would have gone to
// updateGeneric to update.
//
// Its Write and Sum methods are otherwise identical to the macGeneric ones, but
// using function pointers would carry a major performance cost.
type mac struct{ macGeneric }
2019-06-16 21:33:25 +00:00
2020-01-09 20:02:56 +00:00
func (h *mac) Write(p []byte) (int, error) {
nn := len(p)
2019-06-16 21:33:25 +00:00
if h.offset > 0 {
2020-01-09 20:02:56 +00:00
n := copy(h.buffer[h.offset:], p)
if h.offset+n < TagSize {
h.offset += n
return nn, nil
2019-06-16 21:33:25 +00:00
}
2020-01-09 20:02:56 +00:00
p = p[n:]
2019-06-16 21:33:25 +00:00
h.offset = 0
2020-01-09 20:02:56 +00:00
update(&h.macState, h.buffer[:])
2019-06-16 21:33:25 +00:00
}
2020-01-09 20:02:56 +00:00
if n := len(p) - (len(p) % TagSize); n > 0 {
update(&h.macState, p[:n])
p = p[n:]
2019-06-16 21:33:25 +00:00
}
if len(p) > 0 {
h.offset += copy(h.buffer[h.offset:], p)
}
2020-01-09 20:02:56 +00:00
return nn, nil
2019-06-16 21:33:25 +00:00
}
func (h *mac) Sum(out *[16]byte) {
2020-01-09 20:02:56 +00:00
state := h.macState
2019-06-16 21:33:25 +00:00
if h.offset > 0 {
update(&state, h.buffer[:h.offset])
}
2020-01-09 20:02:56 +00:00
finalize(out, &state.h, &state.s)
2019-06-16 21:33:25 +00:00
}