Skip to content

Commit

Permalink
update password for api key
Browse files Browse the repository at this point in the history
  • Loading branch information
mobyvb committed Feb 26, 2024
1 parent 9b1f647 commit 6e745d2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/common/apikey.go
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ func GetTestAPIKey(satelliteID string) (string, error) {
idHash := sha256.Sum256([]byte{0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1})
base64Salt := base64.StdEncoding.EncodeToString(idHash[:])

accessGrant, err := consolewasm.GenAccessGrant(satelliteID, key.Serialize(), "123a123", base64Salt)
accessGrant, err := consolewasm.GenAccessGrant(satelliteID, key.Serialize(), "password", base64Salt)
if err != nil {
return "", errs.Wrap(err)
}
Expand Down

0 comments on commit 6e745d2

Please sign in to comment.