Skip to content

Commit d8bd0b9

Browse files
Use official Argon2 repo from golang.
1 parent b3bec44 commit d8bd0b9

File tree

3 files changed

+8
-14
lines changed

3 files changed

+8
-14
lines changed

Gopkg.lock

+7-7
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Gopkg.toml

-4
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,3 @@
1-
[[constraint]]
2-
branch = "master"
3-
name = "github.com/aead/argon2"
4-
51
[[constraint]]
62
branch = "master"
73
name = "github.com/atotto/clipboard"

encryption/crypto.go

+1-3
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,7 @@ import (
1111
"math/big"
1212
"runtime"
1313

14-
// FIXME use golang argon2 when this bug fix is released: https://github.com/golang/go/issues/23245
15-
//"github.com/golang/crypto/argon2"
16-
"github.com/aead/argon2"
14+
"github.com/golang/crypto/argon2"
1715
)
1816

1917
const (

0 commit comments

Comments
 (0)