Skip to content

Commit

Permalink
use github.com/golang/crypto
Browse files Browse the repository at this point in the history
  • Loading branch information
ddatsh committed Jan 23, 2015
1 parent 144fa0f commit 7e07472
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 code.google.com/p/go.crypto/blowfish
- go get code.google.com/p/go.crypto/cast5
- go get github.com/golang/crypto/blowfish
- go get github.com/golang/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"
"code.google.com/p/go.crypto/blowfish"
"code.google.com/p/go.crypto/cast5"
"github.com/golang/crypto/blowfish"
"github.com/golang/crypto/cast5"
"crypto/aes"
"crypto/cipher"
"crypto/des"
Expand Down

0 comments on commit 7e07472

Please sign in to comment.