vote up 0 vote down star

I basically need to create a self signed certificate and then sign a binary stream with it to create a signature. I tried searching Google but i can't seem to get the right keywords for related results. Any help is appreciated.

flag

Looked for keytool.exe ? – kd304 Jul 9 at 19:18
exampledepot.com/egs/javax.crypto/… exampledepot.com/egs/java.security/… exampledepot.com/egs/java.security.cert/… – kd304 Jul 9 at 19:21
traser.svn.sourceforge.net/viewvc/traser/… for certificate management – kd304 Jul 9 at 20:25
thx, at this point i guess i can make the self signed certificate (it seems similar to making a self signed SSL certificate) but i don't get what function call i can make that supplies the certificate and a string and then makes the signature. – ChronoXIII Jul 9 at 20:41

1 Answer

vote up 1 vote down check

You need to use the private key, not the certificate to sign a stream. Since you tagged this with Java, I am assuming you want to use the JCA.

Check out this example: http://java.sun.com/j2se/1.4.2/docs/guide/security/CryptoSpec.html#SigEx

link|flag
i finally understand what exactly i needed to do, i was supposed to create a PEM certificate so that it has both the rsa private key and the certficate in the .pem file (usefulfor.com/nothing/2009/…) adn then i wsa supposed to read in the file as a binary stream and make a Certficate block with it (clarens.sourceforge.net/docs/jclarens_apidoc/…) from there i can get the privatekey out and then use it as the privatekey as shown above. Thx again, i thought i would just come back and add my full solution – ChronoXIII Jul 10 at 17:45

Your Answer

Get an OpenID
or

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