Skip to content

Commit 4a1a71b

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 6fad3df commit 4a1a71b

File tree

4 files changed

+4
-32
lines changed

4 files changed

+4
-32
lines changed

blake2b/blake2bAVX2_amd64.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
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
6-
// +build go1.7,amd64,gc,!purego
5+
//go:build amd64 && gc && !purego
6+
// +build amd64,gc,!purego
77

88
package blake2b
99

blake2b/blake2bAVX2_amd64.s

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
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
6-
// +build go1.7,amd64,gc,!purego
5+
//go:build amd64 && gc && !purego
6+
// +build amd64,gc,!purego
77

88
#include "textflag.h"
99

blake2b/blake2b_amd64.go

Lines changed: 0 additions & 25 deletions
This file was deleted.

blake2b/register.go

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +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-
// +build go1.9
7-
85
package blake2b
96

107
import (

0 commit comments

Comments
 (0)