I am working on idp-initiated SAML response for salesforce and need your help.

I was working with code and found that I need .pem (private key) key.

KeyStore.PrivateKeyEntry pkEntry = (KeyStore.PrivateKeyEntry)   ks.getEntry("alias", new KeyStore.PasswordProtection(password));

PrivateKey pk = pkEntry.getPrivateKey();

pem key will be used to sign my response signature. Where can I get .pem key?

link|improve this question

feedback

1 Answer

up vote 2 down vote accepted
openssl req -x509 -nodes -days 365 -newkey rsa:1024 -sha1 -subj ‘/C=US/ST=CA/L=San Mateo/CN=www.appirio.com’ -keyout key-mycompanyrsa.pem -out cert-mycompanyrsa.pem

More info: http://blog.jeffdouglas.com/2010/07/06/using-rsa-sha1-with-salesforce-crypto-class/

link|improve this answer
Thanks. I got private key and certificate. How can I add both in the keystore *.jks – imran tariq May 17 '11 at 13:51
One can create keystore here link. – imran tariq Jun 10 '11 at 7:41
For the openssl query above: use double quotes instead of single quotes(if single quotes did not work). – imran tariq Jun 15 '11 at 10:16
feedback

Your Answer

 
or
required, but never shown

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