├── .dockerignore ├── .github ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── PULL_REQUEST_TEMPLATE.md ├── SECURITY.md ├── dependabot.yml └── workflows │ ├── build.yml │ └── fixtures │ ├── 7D851EB72D73BDA0.key │ ├── 7D851EB72D73BDA0.pass │ ├── generate.sh │ ├── gpg-agent.conf │ └── gpg.conf ├── .gitignore ├── .golangci.yml ├── Dockerfile ├── LICENSE ├── MAINTAINERS ├── Makefile ├── README.md ├── client ├── client.go ├── client_test.go └── command.go ├── credentials ├── credentials.go ├── credentials_test.go ├── error.go ├── helper.go └── version.go ├── deb ├── Dockerfile ├── build-deb └── debian │ ├── compat │ ├── control │ ├── docker-credential-pass.install │ ├── docker-credential-secretservice.install │ └── rules ├── docker-bake.hcl ├── go.mod ├── go.sum ├── hack ├── git-meta └── release ├── osxkeychain ├── cmd │ └── main.go ├── osxkeychain.go └── osxkeychain_test.go ├── pass ├── cmd │ └── main.go ├── pass.go └── pass_test.go ├── registryurl ├── parse.go └── parse_test.go ├── secretservice ├── cmd │ └── main.go ├── secretservice.c ├── secretservice.go ├── secretservice.h └── secretservice_test.go ├── vendor ├── github.com │ ├── danieljoos │ │ └── wincred │ │ │ ├── .gitattributes │ │ │ ├── .gitignore │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── conversion.go │ │ │ ├── conversion_unsupported.go │ │ │ ├── sys.go │ │ │ ├── sys_unsupported.go │ │ │ ├── types.go │ │ │ └── wincred.go │ └── keybase │ │ └── go-keychain │ │ ├── .gitignore │ │ ├── .golangci.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── corefoundation.go │ │ ├── datetime.go │ │ ├── ios.go │ │ ├── keychain.go │ │ ├── macos.go │ │ └── util.go ├── golang.org │ └── x │ │ └── sys │ │ ├── LICENSE │ │ ├── PATENTS │ │ └── windows │ │ ├── aliases.go │ │ ├── dll_windows.go │ │ ├── env_windows.go │ │ ├── eventlog.go │ │ ├── exec_windows.go │ │ ├── memory_windows.go │ │ ├── mkerrors.bash │ │ ├── mkknownfolderids.bash │ │ ├── mksyscall.go │ │ ├── race.go │ │ ├── race0.go │ │ ├── security_windows.go │ │ ├── service.go │ │ ├── setupapi_windows.go │ │ ├── str.go │ │ ├── syscall.go │ │ ├── syscall_windows.go │ │ ├── types_windows.go │ │ ├── types_windows_386.go │ │ ├── types_windows_amd64.go │ │ ├── types_windows_arm.go │ │ ├── types_windows_arm64.go │ │ ├── zerrors_windows.go │ │ ├── zknownfolderids_windows.go │ │ └── zsyscall_windows.go └── modules.txt └── wincred ├── cmd └── main.go ├── wincred.go └── wincred_test.go /.dockerignore: -------------------------------------------------------------------------------- 1 | /bin 2 | -------------------------------------------------------------------------------- /.github/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/docker-credential-helpers/HEAD/.github/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/docker-credential-helpers/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/docker-credential-helpers/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/docker-credential-helpers/HEAD/.github/SECURITY.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/docker-credential-helpers/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/docker-credential-helpers/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/fixtures/7D851EB72D73BDA0.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/docker-credential-helpers/HEAD/.github/workflows/fixtures/7D851EB72D73BDA0.key -------------------------------------------------------------------------------- /.github/workflows/fixtures/7D851EB72D73BDA0.pass: -------------------------------------------------------------------------------- 1 | with stupid passphrase -------------------------------------------------------------------------------- /.github/workflows/fixtures/generate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/docker-credential-helpers/HEAD/.github/workflows/fixtures/generate.sh -------------------------------------------------------------------------------- /.github/workflows/fixtures/gpg-agent.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/docker-credential-helpers/HEAD/.github/workflows/fixtures/gpg-agent.conf -------------------------------------------------------------------------------- /.github/workflows/fixtures/gpg.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/docker-credential-helpers/HEAD/.github/workflows/fixtures/gpg.conf -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /bin 2 | -------------------------------------------------------------------------------- /.golangci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/docker-credential-helpers/HEAD/.golangci.yml -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/docker-credential-helpers/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/docker-credential-helpers/HEAD/LICENSE -------------------------------------------------------------------------------- /MAINTAINERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/docker-credential-helpers/HEAD/MAINTAINERS -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/docker-credential-helpers/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/docker-credential-helpers/HEAD/README.md -------------------------------------------------------------------------------- /client/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/docker-credential-helpers/HEAD/client/client.go -------------------------------------------------------------------------------- /client/client_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/docker-credential-helpers/HEAD/client/client_test.go -------------------------------------------------------------------------------- /client/command.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/docker-credential-helpers/HEAD/client/command.go -------------------------------------------------------------------------------- /credentials/credentials.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/docker-credential-helpers/HEAD/credentials/credentials.go -------------------------------------------------------------------------------- /credentials/credentials_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/docker-credential-helpers/HEAD/credentials/credentials_test.go -------------------------------------------------------------------------------- /credentials/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/docker-credential-helpers/HEAD/credentials/error.go -------------------------------------------------------------------------------- /credentials/helper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/docker-credential-helpers/HEAD/credentials/helper.go -------------------------------------------------------------------------------- /credentials/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/docker-credential-helpers/HEAD/credentials/version.go -------------------------------------------------------------------------------- /deb/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/docker-credential-helpers/HEAD/deb/Dockerfile -------------------------------------------------------------------------------- /deb/build-deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/docker-credential-helpers/HEAD/deb/build-deb -------------------------------------------------------------------------------- /deb/debian/compat: -------------------------------------------------------------------------------- 1 | 9 2 | -------------------------------------------------------------------------------- /deb/debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/docker-credential-helpers/HEAD/deb/debian/control -------------------------------------------------------------------------------- /deb/debian/docker-credential-pass.install: -------------------------------------------------------------------------------- 1 | debian/tmp/usr/bin/docker-credential-pass 2 | -------------------------------------------------------------------------------- /deb/debian/docker-credential-secretservice.install: -------------------------------------------------------------------------------- 1 | debian/tmp/usr/bin/docker-credential-secretservice 2 | -------------------------------------------------------------------------------- /deb/debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/docker-credential-helpers/HEAD/deb/debian/rules -------------------------------------------------------------------------------- /docker-bake.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/docker-credential-helpers/HEAD/docker-bake.hcl -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/docker-credential-helpers/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/docker-credential-helpers/HEAD/go.sum -------------------------------------------------------------------------------- /hack/git-meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/docker-credential-helpers/HEAD/hack/git-meta -------------------------------------------------------------------------------- /hack/release: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/docker-credential-helpers/HEAD/hack/release -------------------------------------------------------------------------------- /osxkeychain/cmd/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/docker-credential-helpers/HEAD/osxkeychain/cmd/main.go -------------------------------------------------------------------------------- /osxkeychain/osxkeychain.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/docker-credential-helpers/HEAD/osxkeychain/osxkeychain.go -------------------------------------------------------------------------------- /osxkeychain/osxkeychain_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/docker-credential-helpers/HEAD/osxkeychain/osxkeychain_test.go -------------------------------------------------------------------------------- /pass/cmd/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/docker-credential-helpers/HEAD/pass/cmd/main.go -------------------------------------------------------------------------------- /pass/pass.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/docker-credential-helpers/HEAD/pass/pass.go -------------------------------------------------------------------------------- /pass/pass_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/docker-credential-helpers/HEAD/pass/pass_test.go -------------------------------------------------------------------------------- /registryurl/parse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/docker-credential-helpers/HEAD/registryurl/parse.go -------------------------------------------------------------------------------- /registryurl/parse_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/docker-credential-helpers/HEAD/registryurl/parse_test.go -------------------------------------------------------------------------------- /secretservice/cmd/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/docker-credential-helpers/HEAD/secretservice/cmd/main.go -------------------------------------------------------------------------------- /secretservice/secretservice.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/docker-credential-helpers/HEAD/secretservice/secretservice.c -------------------------------------------------------------------------------- /secretservice/secretservice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/docker-credential-helpers/HEAD/secretservice/secretservice.go -------------------------------------------------------------------------------- /secretservice/secretservice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/docker-credential-helpers/HEAD/secretservice/secretservice.h -------------------------------------------------------------------------------- /secretservice/secretservice_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/docker-credential-helpers/HEAD/secretservice/secretservice_test.go -------------------------------------------------------------------------------- /vendor/github.com/danieljoos/wincred/.gitattributes: -------------------------------------------------------------------------------- 1 | *.go text eol=lf 2 | -------------------------------------------------------------------------------- /vendor/github.com/danieljoos/wincred/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/docker-credential-helpers/HEAD/vendor/github.com/danieljoos/wincred/.gitignore -------------------------------------------------------------------------------- /vendor/github.com/danieljoos/wincred/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/docker-credential-helpers/HEAD/vendor/github.com/danieljoos/wincred/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/danieljoos/wincred/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/docker-credential-helpers/HEAD/vendor/github.com/danieljoos/wincred/README.md -------------------------------------------------------------------------------- /vendor/github.com/danieljoos/wincred/conversion.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/docker-credential-helpers/HEAD/vendor/github.com/danieljoos/wincred/conversion.go -------------------------------------------------------------------------------- /vendor/github.com/danieljoos/wincred/conversion_unsupported.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/docker-credential-helpers/HEAD/vendor/github.com/danieljoos/wincred/conversion_unsupported.go -------------------------------------------------------------------------------- /vendor/github.com/danieljoos/wincred/sys.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/docker-credential-helpers/HEAD/vendor/github.com/danieljoos/wincred/sys.go -------------------------------------------------------------------------------- /vendor/github.com/danieljoos/wincred/sys_unsupported.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/docker-credential-helpers/HEAD/vendor/github.com/danieljoos/wincred/sys_unsupported.go -------------------------------------------------------------------------------- /vendor/github.com/danieljoos/wincred/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/docker-credential-helpers/HEAD/vendor/github.com/danieljoos/wincred/types.go -------------------------------------------------------------------------------- /vendor/github.com/danieljoos/wincred/wincred.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/docker-credential-helpers/HEAD/vendor/github.com/danieljoos/wincred/wincred.go -------------------------------------------------------------------------------- /vendor/github.com/keybase/go-keychain/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/docker-credential-helpers/HEAD/vendor/github.com/keybase/go-keychain/.gitignore -------------------------------------------------------------------------------- /vendor/github.com/keybase/go-keychain/.golangci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/docker-credential-helpers/HEAD/vendor/github.com/keybase/go-keychain/.golangci.yml -------------------------------------------------------------------------------- /vendor/github.com/keybase/go-keychain/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/docker-credential-helpers/HEAD/vendor/github.com/keybase/go-keychain/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/keybase/go-keychain/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/docker-credential-helpers/HEAD/vendor/github.com/keybase/go-keychain/README.md -------------------------------------------------------------------------------- /vendor/github.com/keybase/go-keychain/corefoundation.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/docker-credential-helpers/HEAD/vendor/github.com/keybase/go-keychain/corefoundation.go -------------------------------------------------------------------------------- /vendor/github.com/keybase/go-keychain/datetime.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/docker-credential-helpers/HEAD/vendor/github.com/keybase/go-keychain/datetime.go -------------------------------------------------------------------------------- /vendor/github.com/keybase/go-keychain/ios.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/docker-credential-helpers/HEAD/vendor/github.com/keybase/go-keychain/ios.go -------------------------------------------------------------------------------- /vendor/github.com/keybase/go-keychain/keychain.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/docker-credential-helpers/HEAD/vendor/github.com/keybase/go-keychain/keychain.go -------------------------------------------------------------------------------- /vendor/github.com/keybase/go-keychain/macos.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/docker-credential-helpers/HEAD/vendor/github.com/keybase/go-keychain/macos.go -------------------------------------------------------------------------------- /vendor/github.com/keybase/go-keychain/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/docker-credential-helpers/HEAD/vendor/github.com/keybase/go-keychain/util.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/docker-credential-helpers/HEAD/vendor/golang.org/x/sys/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/docker-credential-helpers/HEAD/vendor/golang.org/x/sys/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/aliases.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/docker-credential-helpers/HEAD/vendor/golang.org/x/sys/windows/aliases.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/dll_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/docker-credential-helpers/HEAD/vendor/golang.org/x/sys/windows/dll_windows.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/env_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/docker-credential-helpers/HEAD/vendor/golang.org/x/sys/windows/env_windows.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/eventlog.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/docker-credential-helpers/HEAD/vendor/golang.org/x/sys/windows/eventlog.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/exec_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/docker-credential-helpers/HEAD/vendor/golang.org/x/sys/windows/exec_windows.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/memory_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/docker-credential-helpers/HEAD/vendor/golang.org/x/sys/windows/memory_windows.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/mkerrors.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/docker-credential-helpers/HEAD/vendor/golang.org/x/sys/windows/mkerrors.bash -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/mkknownfolderids.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/docker-credential-helpers/HEAD/vendor/golang.org/x/sys/windows/mkknownfolderids.bash -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/mksyscall.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/docker-credential-helpers/HEAD/vendor/golang.org/x/sys/windows/mksyscall.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/race.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/docker-credential-helpers/HEAD/vendor/golang.org/x/sys/windows/race.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/race0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/docker-credential-helpers/HEAD/vendor/golang.org/x/sys/windows/race0.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/security_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/docker-credential-helpers/HEAD/vendor/golang.org/x/sys/windows/security_windows.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/docker-credential-helpers/HEAD/vendor/golang.org/x/sys/windows/service.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/setupapi_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/docker-credential-helpers/HEAD/vendor/golang.org/x/sys/windows/setupapi_windows.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/str.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/docker-credential-helpers/HEAD/vendor/golang.org/x/sys/windows/str.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/syscall.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/docker-credential-helpers/HEAD/vendor/golang.org/x/sys/windows/syscall.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/syscall_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/docker-credential-helpers/HEAD/vendor/golang.org/x/sys/windows/syscall_windows.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/types_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/docker-credential-helpers/HEAD/vendor/golang.org/x/sys/windows/types_windows.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/types_windows_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/docker-credential-helpers/HEAD/vendor/golang.org/x/sys/windows/types_windows_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/types_windows_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/docker-credential-helpers/HEAD/vendor/golang.org/x/sys/windows/types_windows_amd64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/types_windows_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/docker-credential-helpers/HEAD/vendor/golang.org/x/sys/windows/types_windows_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/types_windows_arm64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/docker-credential-helpers/HEAD/vendor/golang.org/x/sys/windows/types_windows_arm64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/zerrors_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/docker-credential-helpers/HEAD/vendor/golang.org/x/sys/windows/zerrors_windows.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/zknownfolderids_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/docker-credential-helpers/HEAD/vendor/golang.org/x/sys/windows/zknownfolderids_windows.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/zsyscall_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/docker-credential-helpers/HEAD/vendor/golang.org/x/sys/windows/zsyscall_windows.go -------------------------------------------------------------------------------- /vendor/modules.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/docker-credential-helpers/HEAD/vendor/modules.txt -------------------------------------------------------------------------------- /wincred/cmd/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/docker-credential-helpers/HEAD/wincred/cmd/main.go -------------------------------------------------------------------------------- /wincred/wincred.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/docker-credential-helpers/HEAD/wincred/wincred.go -------------------------------------------------------------------------------- /wincred/wincred_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/docker-credential-helpers/HEAD/wincred/wincred_test.go --------------------------------------------------------------------------------