Skip to content
This repository has been archived by the owner on Apr 9, 2020. It is now read-only.

Commit

Permalink
fix #64
Browse files Browse the repository at this point in the history
go 1.4  canonical import paths
  • Loading branch information
ddatsh committed Jan 24, 2015
1 parent e6b6603 commit 896ea0a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ language: go
go:
- 1.3
install:
- go get github.com/golang/crypto/blowfish
- go get github.com/golang/crypto/cast5
- go get golang.org/x/crypto/blowfish
- go get golang.org/x/crypto/cast5
- go install ./cmd/shadowsocks-local
- go install ./cmd/shadowsocks-server
script:
Expand Down
4 changes: 2 additions & 2 deletions shadowsocks/encrypt.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ package shadowsocks

import (
"bytes"
"github.com/golang/crypto/blowfish"
"github.com/golang/crypto/cast5"
"golang.org/x/crypto/blowfish"
"golang.org/x/crypto/cast5"
"crypto/aes"
"crypto/cipher"
"crypto/des"
Expand Down

0 comments on commit 896ea0a

Please sign in to comment.