1
0
mirror of https://github.com/jesseduffield/lazygit.git synced 2025-03-21 21:47:32 +02:00

12 lines
315 B
Go
Raw Normal View History

2019-08-26 16:53:38 +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-03-27 08:00:01 +01:00
// +build !amd64,!ppc64le gccgo purego
2019-08-26 16:53:38 +02:00
package poly1305
type mac struct{ macGeneric }
func newMAC(key *[32]byte) mac { return mac{newMACGeneric(key)} }