Skip to content

Commit

Permalink
agessh: use allowed RSA key size in tests
Browse files Browse the repository at this point in the history
  • Loading branch information
FiloSottile committed May 25, 2021
1 parent 0b895a9 commit 7a262e1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion agessh/agessh_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ import (
)

func TestSSHRSARoundTrip(t *testing.T) {
pk, err := rsa.GenerateKey(rand.Reader, 768)
pk, err := rsa.GenerateKey(rand.Reader, 2048)
if err != nil {
t.Fatal(err)
}
Expand Down

0 comments on commit 7a262e1

Please sign in to comment.