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

Commit 8920bf8

Browse files
committedJan 27, 2015
Merge branch 'develop', fix go get error using Go 1.4
2 parents 61d80b0 + 896ea0a commit 8920bf8

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed
 

‎.travis.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ language: go
22
go:
33
- 1.3
44
install:
5-
- go get github.com/golang/crypto/blowfish
6-
- go get github.com/golang/crypto/cast5
5+
- go get golang.org/x/crypto/blowfish
6+
- go get golang.org/x/crypto/cast5
77
- go install ./cmd/shadowsocks-local
88
- go install ./cmd/shadowsocks-server
99
script:

‎shadowsocks/encrypt.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ package shadowsocks
22

33
import (
44
"bytes"
5-
"github.com/golang/crypto/blowfish"
6-
"github.com/golang/crypto/cast5"
5+
"golang.org/x/crypto/blowfish"
6+
"golang.org/x/crypto/cast5"
77
"crypto/aes"
88
"crypto/cipher"
99
"crypto/des"

0 commit comments

Comments
 (0)