Class HTTPPostSimpleSignEncoder
java.lang.Object
net.shibboleth.utilities.java.support.component.AbstractInitializableComponent
org.opensaml.messaging.encoder.AbstractMessageEncoder
org.opensaml.messaging.encoder.servlet.AbstractHttpServletResponseMessageEncoder
org.opensaml.messaging.encoder.servlet.BaseHttpServletResponseXMLMessageEncoder
org.opensaml.saml.saml2.binding.encoding.impl.BaseSAML2MessageEncoder
org.opensaml.saml.saml2.binding.encoding.impl.HTTPPostEncoder
org.opensaml.saml.saml2.binding.encoding.impl.HTTPPostSimpleSignEncoder
- All Implemented Interfaces:
Component,DestructableComponent,InitializableComponent,UnmodifiableComponent,MessageEncoder,HttpServletResponseMessageEncoder,SAMLMessageEncoder
SAML 2.0 HTTP-POST-SimpleSign binding message encoder.
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final StringDefault template ID.private final org.slf4j.LoggerClass logger. -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionprotected StringbuildFormDataToSign(org.apache.velocity.VelocityContext velocityContext, MessageContext messageContext, String sigAlgURI) Build the form control data string over which the signature is computed.protected StringbuildKeyInfo(Credential signingCredential, KeyInfoGenerator kiGenerator) Build theKeyInfofrom the signing credential.protected StringgenerateSignature(Credential signingCredential, String algorithmURI, String formData) Generates the signature over the string of concatenated form control data as indicated by the SimpleSign spec.Gets the SAML binding URI supported by this encoder.protected StringgetSignatureAlgorithmURI(SignatureSigningParameters signingParameters) Gets the signature algorithm URI to use.protected voidpopulateVelocityContext(org.apache.velocity.VelocityContext velocityContext, MessageContext messageContext, String endpointURL) Populate the Velocity context instance which will be used to render the POST body.Methods inherited from class org.opensaml.saml.saml2.binding.encoding.impl.HTTPPostEncoder
doDestroy, doEncode, doInitialize, getVelocityEngine, getVelocityTemplateId, postEncode, setVelocityEngine, setVelocityTemplateIdMethods inherited from class org.opensaml.saml.saml2.binding.encoding.impl.BaseSAML2MessageEncoder
getEndpointURLMethods inherited from class org.opensaml.messaging.encoder.servlet.BaseHttpServletResponseXMLMessageEncoder
encode, getMessageToLog, logEncodedMessage, marshallMessageMethods inherited from class org.opensaml.messaging.encoder.servlet.AbstractHttpServletResponseMessageEncoder
getHttpServletResponse, getHttpServletResponseSupplier, setHttpServletResponse, setHttpServletResponseSupplierMethods inherited from class org.opensaml.messaging.encoder.AbstractMessageEncoder
getMessageContext, prepareContext, setMessageContextMethods inherited from class net.shibboleth.utilities.java.support.component.AbstractInitializableComponent
destroy, initialize, isDestroyed, isInitializedMethods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface net.shibboleth.utilities.java.support.component.DestructableComponent
destroy, isDestroyedMethods inherited from interface net.shibboleth.utilities.java.support.component.InitializableComponent
initialize, isInitializedMethods inherited from interface org.opensaml.messaging.encoder.MessageEncoder
encode, prepareContext, setMessageContext
-
Field Details
-
DEFAULT_TEMPLATE_ID
Default template ID.- See Also:
-
log
private final org.slf4j.Logger logClass logger.
-
-
Constructor Details
-
HTTPPostSimpleSignEncoder
public HTTPPostSimpleSignEncoder()Constructor.
-
-
Method Details
-
getBindingURI
Gets the SAML binding URI supported by this encoder.- Specified by:
getBindingURIin interfaceSAMLMessageEncoder- Overrides:
getBindingURIin classHTTPPostEncoder- Returns:
- SAML binding URI supported by this encoder
-
populateVelocityContext
protected void populateVelocityContext(org.apache.velocity.VelocityContext velocityContext, MessageContext messageContext, String endpointURL) throws MessageEncodingException Populate the Velocity context instance which will be used to render the POST body.- Overrides:
populateVelocityContextin classHTTPPostEncoder- Parameters:
velocityContext- the Velocity context instance to populate with datamessageContext- the SAML message context source of dataendpointURL- endpoint URL to which to encode message- Throws:
MessageEncodingException- thrown if there is a problem encoding the message
-
buildKeyInfo
protected String buildKeyInfo(Credential signingCredential, KeyInfoGenerator kiGenerator) throws MessageEncodingException Build theKeyInfofrom the signing credential.- Parameters:
signingCredential- the credential used for signingkiGenerator- the generator for the KeyInfo- Returns:
- the marshalled, serialized and base64-encoded KeyInfo, or null if none was generated
- Throws:
MessageEncodingException- thrown if there is an error generating or marshalling the KeyInfo
-
buildFormDataToSign
protected String buildFormDataToSign(org.apache.velocity.VelocityContext velocityContext, MessageContext messageContext, String sigAlgURI) throws MessageEncodingException Build the form control data string over which the signature is computed.- Parameters:
velocityContext- the Velocity context which is already populated with the values for SAML message and relay statemessageContext- the SAML message context being processedsigAlgURI- the signature algorithm URI- Returns:
- the form control data string for signature computation
- Throws:
MessageEncodingException- if there is an issue building the form to sign.
-
getSignatureAlgorithmURI
protected String getSignatureAlgorithmURI(SignatureSigningParameters signingParameters) throws MessageEncodingException Gets the signature algorithm URI to use.- Parameters:
signingParameters- the signing parameters to use- Returns:
- signature algorithm to use with the associated signing credential
- Throws:
MessageEncodingException- thrown if the algorithm URI is not supplied explicitly and could not be derived from the supplied credential
-
generateSignature
protected String generateSignature(Credential signingCredential, String algorithmURI, String formData) throws MessageEncodingException Generates the signature over the string of concatenated form control data as indicated by the SimpleSign spec.- Parameters:
signingCredential- credential that will be used to signalgorithmURI- algorithm URI of the signing credentialformData- form control data to be signed- Returns:
- base64 encoded signature of form control data
- Throws:
MessageEncodingException- there is an error computing the signature
-