Skip to content

Commit d006066

Browse files
committed
update expire scrypt link
1 parent 55e90cb commit d006066

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

de/09.5.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ Very secure systems utilize hash algorithms that take into account the time and
7575

7676
In Go, it's recommended that you use the `scrypt` package, which is based on the work of the famous hacker Colin Percival (of the FreeBSD backup service Tarsnap).
7777

78-
The packge's source code can be found at the following link: http://code.google.com/p/go/source/browse?repo=crypto#hg%2Fscrypt
78+
The packge's source code can be found at the following link: https://github.com/golang/crypto/tree/master/scrypt
7979

8080
Here is an example code snippet which can be used to obtain a derived key for an AES-256 encryption:
8181

ja/09.5.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ Go言語のこの三種類の暗号化アルゴリズムの実装は以下の通
7171

7272
ここでは`scrypt`の方法をおすすめしましょう。scryptは有名なFreeBSDハッカーであるColin Percivalが彼の予備のサービスとしてTarsnapで開発しました。
7373

74-
現在Go言語でサポートされているライブラリhttp://code.google.com/p/go/source/browse?repo=crypto#hg%2Fscrypt
74+
現在Go言語でサポートされているライブラリhttps://github.com/golang/crypto/tree/master/scrypt
7575

7676
dk := scrypt.Key([]byte("some password"), []byte(salt), 16384, 8, 1, 32)
7777

pt-br/09.5.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ Very secure systems utilize hash algorithms that take into account the time and
7575

7676
In Go, it's recommended that you use the `scrypt` package, which is based on the work of the famous hacker Colin Percival (of the FreeBSD backup service Tarsnap).
7777

78-
The packge's source code can be found at the following link: http://code.google.com/p/go/source/browse?repo=crypto#hg%2Fscrypt
78+
The packge's source code can be found at the following link: https://github.com/golang/crypto/tree/master/scrypt
7979

8080
Here is an example code snippet which can be used to obtain a derived key for an AES-256 encryption:
8181

zh/09.5.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ last :=fmt.Sprintf("%x", h.Sum(nil))
7676

7777
这里推荐`scrypt`方案,scrypt是由著名的FreeBSD黑客Colin Percival为他的备份服务Tarsnap开发的。
7878

79-
目前Go语言里面支持的库http://code.google.com/p/go/source/browse?repo=crypto#hg%2Fscrypt
79+
目前Go语言里面支持的库 https://github.com/golang/crypto/tree/master/scrypt
8080
```Go
8181

8282
dk := scrypt.Key([]byte("some password"), []byte(salt), 16384, 8, 1, 32)

0 commit comments

Comments
 (0)