diff --git a/README.md b/README.md index 56e2d19..31e8730 100644 --- a/README.md +++ b/README.md @@ -13,7 +13,7 @@ the client and the server, for our use we hardcoded a supported set of negotiati ## Sample Usage as NTLM Client ```go -import "github.com/vadimi/go-ntlm/ntlm" +import "gitlab.labexposed.com/lgcosta/go-ntlm/ntlm" session, err = ntlm.CreateClientSession(ntlm.Version2, ntlm.ConnectionlessMode) session.SetUserInfo("someuser","somepassword","somedomain") diff --git a/go.mod b/go.mod index f49ac8d..97a58c5 100644 --- a/go.mod +++ b/go.mod @@ -1,3 +1,3 @@ -module github.com/sematext/go-ntlm +module gitlab.labexposed.com/lgcosta/go-ntlm go 1.13 diff --git a/ntlm/crypto.go b/ntlm/crypto.go index ef137ed..2861859 100644 --- a/ntlm/crypto.go +++ b/ntlm/crypto.go @@ -10,7 +10,7 @@ import ( rc4P "crypto/rc4" crc32P "hash/crc32" - md4P "github.com/sematext/go-ntlm/ntlm/md4" + md4P "gitlab.labexposed.com/lgcosta/go-ntlm/ntlm/md4" ) func md4(data []byte) []byte {