diff --git a/cmd/credentials.go b/cmd/credentials.go index 447a78e..d1c5a2c 100644 --- a/cmd/credentials.go +++ b/cmd/credentials.go @@ -31,7 +31,7 @@ const ( encKeyVersionByte = byte(77) // magic number EncryptionKey encoding secKeyVersionByte = byte(78) // magic number SecretKey encoding - password = "123a123" + password = "password" secret = "Welcome1" filename = ".creds" ) diff --git a/pkg/console.go b/pkg/console.go index 1add881..dcd0b90 100644 --- a/pkg/console.go +++ b/pkg/console.go @@ -63,7 +63,7 @@ func (ce *ConsoleEndpoint) tryLogin(ctx context.Context, email string) (string, Password string `json:"password"` } - authToken.Password = "123a123" + authToken.Password = "password" authToken.Email = email res, err := json.Marshal(authToken) @@ -172,7 +172,7 @@ func (ce *ConsoleEndpoint) createUser(ctx context.Context, regToken string, emai registerData.FullName = "Alice" registerData.Email = email - registerData.Password = "123a123" + registerData.Password = "password" registerData.ShortName = "al" registerData.Secret = regToken