Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Can anybody tell me how to generate signature for "RSASSA-PKCS1-v1.5" in Java?

I, actually, want to know how do I with java.security.Signature class.

Do I have to use any 3rd party libraries?

share|improve this question

1 Answer

up vote 2 down vote accepted

Sun JCE supports PKCS#1 signature. This is all you have to do,

Signature signer = Signature.getInstance("SHA1withRSA");
signer.initSign(privateKey);
signer.update(message);
byte[] signature = signer.sign();
share|improve this answer
Thank you for the answer. – Jin Kwon May 7 '10 at 14:38

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.