Skip to Main Content

Java Security

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

RSA : public exponent: 65537

843811May 13 2005
Hi!

When i create a RSA-Key with

KeyPairGenerator generator = KeyPairGenerator.getInstance("RSA");
generator.initialize(1024); // Key length
KeyPair pair = generator.genKeyPair();

the public exponent is always 65537 (=2^16+1; i know, it's fast if you compute c=m^e mod n by fast exponentation).
Is this standard? Sorry, but i can't find some papers about this.

Thanks, Schubb
Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Jun 10 2005
Added on May 13 2005
0 comments
411 views