Skip to content

Commit 2b4f576

Browse files
committed
blake2b: drop Go 1.6, Go 1.8 compatibility
Other packages already dropped compatibility with go < 1.12, so it should be safe to remove it for this package as well.
1 parent a2edfb5 commit 2b4f576

File tree

4 files changed

+2
-28
lines changed

4 files changed

+2
-28
lines changed

Diff for: blake2b/blake2bAVX2_amd64.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// Use of this source code is governed by a BSD-style
33
// license that can be found in the LICENSE file.
44

5-
//go:build go1.7 && amd64 && gc && !purego
5+
//go:build amd64 && gc && !purego
66

77
package blake2b
88

Diff for: blake2b/blake2bAVX2_amd64.s

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// Use of this source code is governed by a BSD-style
33
// license that can be found in the LICENSE file.
44

5-
//go:build go1.7 && amd64 && gc && !purego
5+
//go:build amd64 && gc && !purego
66

77
#include "textflag.h"
88

Diff for: blake2b/blake2b_amd64.go

-24
This file was deleted.

Diff for: blake2b/register.go

-2
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@
22
// Use of this source code is governed by a BSD-style
33
// license that can be found in the LICENSE file.
44

5-
//go:build go1.9
6-
75
package blake2b
86

97
import (

0 commit comments

Comments
 (0)