log.V(9) md5sums of credentials

This commit is contained in:
Tim Hockin 2022-06-25 16:20:12 -07:00
parent 6e65782d45
commit e765289185
1 changed files with 8 additions and 0 deletions

View File

@ -20,6 +20,7 @@ package main // import "k8s.io/git-sync/cmd/git-sync"
import ( import (
"context" "context"
"crypto/md5"
"fmt" "fmt"
"io" "io"
"io/ioutil" "io/ioutil"
@ -1316,9 +1317,16 @@ func (git *repoSync) GetRevs(ctx context.Context) (string, string, error) {
return local, remote, nil return local, remote, nil
} }
func md5sum(s string) string {
h := md5.New()
io.WriteString(h, s)
return fmt.Sprintf("%x", h.Sum(nil))
}
// StoreCredentials stores the username and password for later use. // StoreCredentials stores the username and password for later use.
func (git *repoSync) StoreCredentials(ctx context.Context, username, password string) error { func (git *repoSync) StoreCredentials(ctx context.Context, username, password string) error {
git.log.V(3).Info("storing git credentials") git.log.V(3).Info("storing git credentials")
git.log.V(9).Info("md5 of credentials", "username", md5sum(username), "password", md5sum(password))
creds := fmt.Sprintf("url=%v\nusername=%v\npassword=%v\n", git.repo, username, password) creds := fmt.Sprintf("url=%v\nusername=%v\npassword=%v\n", git.repo, username, password)
_, err := git.run.RunWithStdin(ctx, "", nil, creds, git.cmd, "credential", "approve") _, err := git.run.RunWithStdin(ctx, "", nil, creds, git.cmd, "credential", "approve")