2018-08-21 09:56:50 -04:00
|
|
|
// Copyright 2012 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-28 04:51:18 -05:00
|
|
|
// +build !gccgo,!purego
|
2018-08-21 09:56:50 -04:00
|
|
|
|
|
|
|
package poly1305
|
|
|
|
|
|
|
|
//go:noescape
|
2019-11-20 00:30:46 -05:00
|
|
|
func update(state *macState, msg []byte)
|
2019-05-13 11:38:53 -04:00
|
|
|
|
2019-11-20 00:30:46 -05: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-05-13 11:38:53 -04:00
|
|
|
|
2019-11-20 00:30:46 -05:00
|
|
|
func (h *mac) Write(p []byte) (int, error) {
|
|
|
|
nn := len(p)
|
2019-05-13 11:38:53 -04:00
|
|
|
if h.offset > 0 {
|
2019-11-20 00:30:46 -05:00
|
|
|
n := copy(h.buffer[h.offset:], p)
|
|
|
|
if h.offset+n < TagSize {
|
|
|
|
h.offset += n
|
|
|
|
return nn, nil
|
2019-05-13 11:38:53 -04:00
|
|
|
}
|
2019-11-20 00:30:46 -05:00
|
|
|
p = p[n:]
|
2019-05-13 11:38:53 -04:00
|
|
|
h.offset = 0
|
2019-11-20 00:30:46 -05:00
|
|
|
update(&h.macState, h.buffer[:])
|
2019-05-13 11:38:53 -04:00
|
|
|
}
|
2019-11-20 00:30:46 -05:00
|
|
|
if n := len(p) - (len(p) % TagSize); n > 0 {
|
|
|
|
update(&h.macState, p[:n])
|
|
|
|
p = p[n:]
|
2019-05-13 11:38:53 -04:00
|
|
|
}
|
|
|
|
if len(p) > 0 {
|
|
|
|
h.offset += copy(h.buffer[h.offset:], p)
|
|
|
|
}
|
2019-11-20 00:30:46 -05:00
|
|
|
return nn, nil
|
2019-05-13 11:38:53 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
func (h *mac) Sum(out *[16]byte) {
|
2019-11-20 00:30:46 -05:00
|
|
|
state := h.macState
|
2019-05-13 11:38:53 -04:00
|
|
|
if h.offset > 0 {
|
|
|
|
update(&state, h.buffer[:h.offset])
|
2018-08-21 09:56:50 -04:00
|
|
|
}
|
2019-11-20 00:30:46 -05:00
|
|
|
finalize(out, &state.h, &state.s)
|
2018-08-21 09:56:50 -04:00
|
|
|
}
|