diff options
author | Alex Gaynor <alex.gaynor@gmail.com> | 2018-01-06 19:39:57 -0500 |
---|---|---|
committer | Paul Kehrer <paul.l.kehrer@gmail.com> | 2018-01-06 18:39:57 -0600 |
commit | 15cc998c1f60880b6177c506d89f3349201d765b (patch) | |
tree | 354f10f02a03d3df023c04baacfdf6e2c43bd86f /docs/development | |
parent | 858a429d88c7e35ecd224a98bfda2c3dd428ae1f (diff) | |
download | cryptography-15cc998c1f60880b6177c506d89f3349201d765b.tar.gz cryptography-15cc998c1f60880b6177c506d89f3349201d765b.tar.bz2 cryptography-15cc998c1f60880b6177c506d89f3349201d765b.zip |
Fixed import path in go script (#4075)
Diffstat (limited to 'docs/development')
-rw-r--r-- | docs/development/custom-vectors/cast5/verify_cast5.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/development/custom-vectors/cast5/verify_cast5.go b/docs/development/custom-vectors/cast5/verify_cast5.go index cbc89a03..b2d711a9 100644 --- a/docs/development/custom-vectors/cast5/verify_cast5.go +++ b/docs/development/custom-vectors/cast5/verify_cast5.go @@ -3,7 +3,7 @@ package main import ( "bufio" "bytes" - "code.google.com/p/go.crypto/cast5" + "golang.org/x/crypto/cast5" "crypto/cipher" "encoding/hex" "fmt" |