diff --git a/go.mod b/go.mod index 00ec7d6..10e585c 100644 --- a/go.mod +++ b/go.mod @@ -1 +1,3 @@ -module github.com/ThomsonReutersEikon/go-ntlm +module github.com/vadimi/go-ntlm + +go 1.14 diff --git a/go.sum b/go.sum new file mode 100644 index 0000000..e69de29 diff --git a/ntlm/crypto.go b/ntlm/crypto.go index 6e6774d..21b9e72 100644 --- a/ntlm/crypto.go +++ b/ntlm/crypto.go @@ -10,7 +10,7 @@ import ( rc4P "crypto/rc4" crc32P "hash/crc32" - md4P "github.com/ThomsonReutersEikon/go-ntlm/ntlm/md4" + md4P "github.com/vadimi/go-ntlm/ntlm/md4" ) func md4(data []byte) []byte { diff --git a/utils/decode_auth.go b/utils/decode_auth.go index 5fd8ba7..ae97c38 100644 --- a/utils/decode_auth.go +++ b/utils/decode_auth.go @@ -7,7 +7,7 @@ import ( "flag" "fmt" - "github.com/ThomsonReutersEikon/go-ntlm/ntlm" + "github.com/vadimi/go-ntlm/ntlm" ) func main() { diff --git a/utils/test_auth.go b/utils/test_auth.go index ba0bdc6..f04616e 100644 --- a/utils/test_auth.go +++ b/utils/test_auth.go @@ -6,7 +6,7 @@ import ( "encoding/base64" "fmt" - "github.com/ThomsonReutersEikon/go-ntlm/ntlm" + "github.com/vadimi/go-ntlm/ntlm" ) func main() {