I can able to create a assertion using OpenSAML but I want to sign it. Signing can be done in two ways:
1. Self sign
2. Using third party (verisign etc.,)
What are the steps to self sign the assertion using OpenSAML?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
To self sign the assertion you need jks file. Here are the instructions to create a jks file:
keytool -genkey -keyalg RSA -alias selfsigned -keystore keystore.jks -storepass password -validity 360 -keysize 2048
Use that jks file to self sign the assertion. For self signing you can use the example in the following link