Skip to content

Commit 41463bc

Browse files
committed
💚 JWT.encode requires minimum key length of 2048
1 parent 9a940f1 commit 41463bc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

spec/examples/google_spec.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@
5959
rescue OpenSSL::PKCS12::PKCS12Error
6060
# JRuby CI builds are blowing up trying to extract a sample key for some reason. This simulates the end result
6161
# of actually figuring out the problem.
62-
OpenSSL::PKey::RSA.new(1024)
62+
OpenSSL::PKey::RSA.new(2048)
6363
end
6464
end
6565
# Per Google:

0 commit comments

Comments
 (0)