Skip to content

Commit

Permalink
Merge pull request #15 from passbolt/fix-ci-keysize
Browse files Browse the repository at this point in the history
update keysize in test
  • Loading branch information
speatzle authored Dec 30, 2022
2 parents 5ce26cf + 8a5cbff commit 1aaafcf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion helper/setup.go
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ func SetupAccount(ctx context.Context, c *api.Client, userID, token, password st

keyName := install.Profile.FirstName + " " + install.Profile.LastName + " " + install.Username

privateKey, err := helper.GenerateKey(keyName, install.Username, []byte(password), "rsa", 2048)
privateKey, err := helper.GenerateKey(keyName, install.Username, []byte(password), "rsa", 4096)
if err != nil {
return "", fmt.Errorf("Generating Private Key: %w", err)
}
Expand Down

0 comments on commit 1aaafcf

Please sign in to comment.