Java Code Examples for org.apache.wss4j.dom.handler.RequestData#setSigVerCrypto()
The following examples show how to use
org.apache.wss4j.dom.handler.RequestData#setSigVerCrypto() .
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: SamlTokenInterceptor.java From cxf with Apache License 2.0 | 6 votes |
private List<WSSecurityEngineResult> processToken(Element tokenElement, final SoapMessage message) throws WSSecurityException { RequestData data = new CXFRequestData(); Object o = SecurityUtils.getSecurityPropertyValue(SecurityConstants.CALLBACK_HANDLER, message); try { data.setCallbackHandler(SecurityUtils.getCallbackHandler(o)); } catch (Exception ex) { throw new WSSecurityException(WSSecurityException.ErrorCode.FAILURE, ex); } data.setMsgContext(message); data.setWssConfig(WSSConfig.getNewInstance()); data.setSigVerCrypto(getCrypto(SecurityConstants.SIGNATURE_CRYPTO, SecurityConstants.SIGNATURE_PROPERTIES, message)); WSDocInfo wsDocInfo = new WSDocInfo(tokenElement.getOwnerDocument()); data.setWsDocInfo(wsDocInfo); SAMLTokenProcessor p = new SAMLTokenProcessor(); return p.handleToken(tokenElement, data); }
Example 2
Source File: WSS4JInInterceptor.java From cxf with Apache License 2.0 | 6 votes |
/** * Do whatever is necessary to determine the action for the incoming message and * do whatever other setup work is necessary. * * @param msg * @param reqData */ protected void computeAction(SoapMessage msg, RequestData reqData) throws WSSecurityException { // // Try to get Crypto Provider from message context properties. // It gives a possibility to use external Crypto Provider // Crypto encCrypto = (Crypto)SecurityUtils.getSecurityPropertyValue(SecurityConstants.ENCRYPT_CRYPTO, msg); if (encCrypto != null) { reqData.setDecCrypto(encCrypto); } Crypto sigCrypto = (Crypto)SecurityUtils.getSecurityPropertyValue(SecurityConstants.SIGNATURE_CRYPTO, msg); if (sigCrypto != null) { reqData.setSigVerCrypto(sigCrypto); } }
Example 3
Source File: STSUnitTest.java From cxf with Apache License 2.0 | 5 votes |
private List<WSSecurityEngineResult> processToken(SecurityToken token) throws Exception { RequestData requestData = new RequestData(); CallbackHandler callbackHandler = new CommonCallbackHandler(); requestData.setCallbackHandler(callbackHandler); Crypto crypto = CryptoFactory.getInstance("clientKeystore.properties", this.getClass().getClassLoader()); requestData.setSigVerCrypto(crypto); requestData.setWsDocInfo(new WSDocInfo(token.getToken().getOwnerDocument())); Processor processor = new SAMLTokenProcessor(); return processor.handleToken(token.getToken(), requestData); }
Example 4
Source File: IssueUnitTest.java From cxf with Apache License 2.0 | 5 votes |
private List<WSSecurityEngineResult> processToken(SecurityToken token) throws Exception { RequestData requestData = new RequestData(); requestData.setDisableBSPEnforcement(true); CallbackHandler callbackHandler = new org.apache.cxf.systest.sts.common.CommonCallbackHandler(); requestData.setCallbackHandler(callbackHandler); Crypto crypto = CryptoFactory.getInstance("serviceKeystore.properties"); requestData.setDecCrypto(crypto); requestData.setSigVerCrypto(crypto); requestData.setWsDocInfo(new WSDocInfo(token.getToken().getOwnerDocument())); Processor processor = new SAMLTokenProcessor(); return processor.handleToken(token.getToken(), requestData); }
Example 5
Source File: CustomParameterTest.java From cxf with Apache License 2.0 | 5 votes |
private List<WSSecurityEngineResult> processToken(Element assertionElement) throws Exception { RequestData requestData = new RequestData(); requestData.setDisableBSPEnforcement(true); CallbackHandler callbackHandler = new org.apache.cxf.systest.sts.common.CommonCallbackHandler(); requestData.setCallbackHandler(callbackHandler); Crypto crypto = CryptoFactory.getInstance("serviceKeystore.properties"); requestData.setDecCrypto(crypto); requestData.setSigVerCrypto(crypto); requestData.setWsDocInfo(new WSDocInfo(assertionElement.getOwnerDocument())); Processor processor = new SAMLTokenProcessor(); return processor.handleToken(assertionElement, requestData); }
Example 6
Source File: RequestParserUnitTest.java From cxf with Apache License 2.0 | 5 votes |
/** * Test for fetching (and validating) a referenced BinarySecurityToken from a UseKey Element. */ @org.junit.Test public void testUseKeyX509() throws Exception { Element secHeaderElement = (Element) parseStringToElement(SECURITY_HEADER_X509).getFirstChild(); RequestSecurityTokenType request = createJaxbObject(USE_KEY_X509_REFERENCE); RequestParser parser = new RequestParser(); // Mock up message context MessageImpl msg = new MessageImpl(); WrappedMessageContext msgContext = new WrappedMessageContext(msg); // Process the security header and store the results in the message context WSSecurityEngine securityEngine = new WSSecurityEngine(); RequestData reqData = new RequestData(); reqData.setSigVerCrypto(getCrypto()); reqData.setCallbackHandler(new PasswordCallbackHandler()); WSHandlerResult results = securityEngine.processSecurityHeader(secHeaderElement, reqData); List<WSHandlerResult> resultsList = new ArrayList<>(); resultsList.add(results); msgContext.put(WSHandlerConstants.RECV_RESULTS, resultsList); RequestRequirements requestRequirements = parser.parseRequest(request, msgContext, null, null); assertNotNull(requestRequirements.getKeyRequirements().getReceivedCredential().getX509Cert()); }
Example 7
Source File: TrustValidator.java From cxf with Apache License 2.0 | 5 votes |
public void validateTrust(Crypto crypto, X509Certificate cert, PublicKey publicKey, Collection<Pattern> subjectCertConstraints) throws WSSecurityException { SignatureTrustValidator validator = new SignatureTrustValidator(); RequestData data = new RequestData(); data.setSigVerCrypto(crypto); data.setSubjectCertConstraints(subjectCertConstraints); Credential trustCredential = new Credential(); trustCredential.setPublicKey(publicKey); if (cert != null) { trustCredential.setCertificates(new X509Certificate[]{cert}); } validator.validate(trustCredential, data); }
Example 8
Source File: SAMLTokenRenewer.java From cxf with Apache License 2.0 | 4 votes |
private void validateAssertion( SamlAssertionWrapper assertion, ReceivedToken tokenToRenew, SecurityToken token, TokenRenewerParameters tokenParameters ) throws WSSecurityException { // Check the cached renewal properties Map<String, Object> props = token.getProperties(); if (props == null) { LOG.log(Level.WARNING, "Error in getting properties from cached token"); throw new STSException( "Error in getting properties from cached token", STSException.REQUEST_FAILED ); } String isAllowRenewal = (String)props.get(STSConstants.TOKEN_RENEWING_ALLOW); String isAllowRenewalAfterExpiry = (String)props.get(STSConstants.TOKEN_RENEWING_ALLOW_AFTER_EXPIRY); if (isAllowRenewal == null || !Boolean.valueOf(isAllowRenewal)) { LOG.log(Level.WARNING, "The token is not allowed to be renewed"); throw new STSException("The token is not allowed to be renewed", STSException.REQUEST_FAILED); } // Check to see whether the token has expired greater than the configured max expiry time if (tokenToRenew.getState() == STATE.EXPIRED) { if (!allowRenewalAfterExpiry || isAllowRenewalAfterExpiry == null || !Boolean.valueOf(isAllowRenewalAfterExpiry)) { LOG.log(Level.WARNING, "Renewal after expiry is not allowed"); throw new STSException( "Renewal after expiry is not allowed", STSException.REQUEST_FAILED ); } DateTime expiryDate = getExpiryDate(assertion); DateTime currentDate = new DateTime(); if ((currentDate.getMillis() - expiryDate.getMillis()) > (maxExpiry * 1000L)) { LOG.log(Level.WARNING, "The token expired too long ago to be renewed"); throw new STSException( "The token expired too long ago to be renewed", STSException.REQUEST_FAILED ); } } // Verify Proof of Possession ProofOfPossessionValidator popValidator = new ProofOfPossessionValidator(); if (verifyProofOfPossession) { STSPropertiesMBean stsProperties = tokenParameters.getStsProperties(); Crypto sigCrypto = stsProperties.getSignatureCrypto(); CallbackHandler callbackHandler = stsProperties.getCallbackHandler(); RequestData requestData = new RequestData(); requestData.setSigVerCrypto(sigCrypto); WSSConfig wssConfig = WSSConfig.getNewInstance(); requestData.setWssConfig(wssConfig); WSDocInfo docInfo = new WSDocInfo(((Element)tokenToRenew.getToken()).getOwnerDocument()); requestData.setWsDocInfo(docInfo); // Parse the HOK subject if it exists assertion.parseSubject( new WSSSAMLKeyInfoProcessor(requestData), sigCrypto, callbackHandler ); SAMLKeyInfo keyInfo = assertion.getSubjectKeyInfo(); if (keyInfo == null) { keyInfo = new SAMLKeyInfo((byte[])null); } if (!popValidator.checkProofOfPossession(tokenParameters, keyInfo)) { throw new STSException( "Failed to verify the proof of possession of the key associated with the " + "saml token. No matching key found in the request.", STSException.INVALID_REQUEST ); } } // Check the AppliesTo address String appliesToAddress = tokenParameters.getAppliesToAddress(); if (appliesToAddress != null) { if (assertion.getSaml1() != null) { List<AudienceRestrictionCondition> restrConditions = assertion.getSaml1().getConditions().getAudienceRestrictionConditions(); if (!matchSaml1AudienceRestriction(appliesToAddress, restrConditions)) { LOG.log(Level.WARNING, "The AppliesTo address does not match the Audience Restriction"); throw new STSException( "The AppliesTo address does not match the Audience Restriction", STSException.INVALID_REQUEST ); } } else { List<AudienceRestriction> audienceRestrs = assertion.getSaml2().getConditions().getAudienceRestrictions(); if (!matchSaml2AudienceRestriction(appliesToAddress, audienceRestrs)) { LOG.log(Level.WARNING, "The AppliesTo address does not match the Audience Restriction"); throw new STSException( "The AppliesTo address does not match the Audience Restriction", STSException.INVALID_REQUEST ); } } } }
Example 9
Source File: SAMLProtocolResponseValidator.java From cxf with Apache License 2.0 | 4 votes |
/** * Validate the response signature */ private void validateResponseSignature( Signature signature, Document doc, Crypto sigCrypto, CallbackHandler callbackHandler ) throws WSSecurityException { RequestData requestData = new RequestData(); requestData.setSigVerCrypto(sigCrypto); WSSConfig wssConfig = WSSConfig.getNewInstance(); requestData.setWssConfig(wssConfig); requestData.setCallbackHandler(callbackHandler); requestData.setWsDocInfo(new WSDocInfo(doc)); SAMLKeyInfo samlKeyInfo = null; KeyInfo keyInfo = signature.getKeyInfo(); if (keyInfo != null) { try { samlKeyInfo = SAMLUtil.getCredentialFromKeyInfo( keyInfo.getDOM(), new WSSSAMLKeyInfoProcessor(requestData), sigCrypto ); } catch (WSSecurityException ex) { LOG.log(Level.FINE, "Error in getting KeyInfo from SAML Response: " + ex.getMessage(), ex); throw ex; } } else if (!keyInfoMustBeAvailable) { samlKeyInfo = createKeyInfoFromDefaultAlias(sigCrypto); } if (samlKeyInfo == null) { LOG.warning("No KeyInfo supplied in the SAMLResponse signature"); throw new WSSecurityException(WSSecurityException.ErrorCode.FAILURE, "invalidSAMLsecurity"); } // Validate Signature against profiles validateSignatureAgainstProfiles(signature, samlKeyInfo); // Now verify trust on the signature Credential trustCredential = new Credential(); trustCredential.setPublicKey(samlKeyInfo.getPublicKey()); trustCredential.setCertificates(samlKeyInfo.getCerts()); try { signatureValidator.validate(trustCredential, requestData); } catch (WSSecurityException e) { LOG.log(Level.FINE, "Error in validating signature on SAML Response: " + e.getMessage(), e); throw new WSSecurityException(WSSecurityException.ErrorCode.FAILURE, "invalidSAMLsecurity"); } }
Example 10
Source File: SAMLProtocolResponseValidator.java From cxf with Apache License 2.0 | 4 votes |
/** * Validate an internal Assertion */ private void validateAssertion( SamlAssertionWrapper assertion, Crypto sigCrypto, CallbackHandler callbackHandler, Document doc, boolean signedResponse ) throws WSSecurityException { Credential credential = new Credential(); credential.setSamlAssertion(assertion); RequestData requestData = new RequestData(); requestData.setSigVerCrypto(sigCrypto); WSSConfig wssConfig = WSSConfig.getNewInstance(); requestData.setWssConfig(wssConfig); requestData.setCallbackHandler(callbackHandler); if (assertion.isSigned()) { if (assertion.getSaml1() != null) { assertion.getSaml1().getDOM().setIdAttributeNS(null, "AssertionID", true); } else { assertion.getSaml2().getDOM().setIdAttributeNS(null, "ID", true); } // Verify the signature try { Signature sig = assertion.getSignature(); WSDocInfo docInfo = new WSDocInfo(sig.getDOM().getOwnerDocument()); requestData.setWsDocInfo(docInfo); SAMLKeyInfo samlKeyInfo = null; KeyInfo keyInfo = sig.getKeyInfo(); if (keyInfo != null) { samlKeyInfo = SAMLUtil.getCredentialFromKeyInfo( keyInfo.getDOM(), new WSSSAMLKeyInfoProcessor(requestData), sigCrypto ); } else if (!keyInfoMustBeAvailable) { samlKeyInfo = createKeyInfoFromDefaultAlias(sigCrypto); } if (samlKeyInfo == null) { LOG.warning("No KeyInfo supplied in the SAMLResponse assertion signature"); throw new WSSecurityException(WSSecurityException.ErrorCode.FAILURE, "invalidSAMLsecurity"); } assertion.verifySignature(samlKeyInfo); assertion.parseSubject( new WSSSAMLKeyInfoProcessor(requestData), requestData.getSigVerCrypto(), requestData.getCallbackHandler() ); } catch (WSSecurityException e) { LOG.log(Level.FINE, "Assertion failed signature validation", e); throw e; } } // Validate the Assertion & verify trust in the signature try { SamlSSOAssertionValidator assertionValidator = new SamlSSOAssertionValidator(signedResponse); assertionValidator.validate(credential, requestData); } catch (WSSecurityException ex) { LOG.log(Level.FINE, "Assertion validation failed: " + ex.getMessage(), ex); throw ex; } }
Example 11
Source File: AuthnRequestParser.java From cxf-fediz with Apache License 2.0 | 4 votes |
/** * Validate the AuthnRequest or LogoutRequest signature */ private void validateRequestSignature( Signature signature, Crypto sigCrypto ) throws WSSecurityException { RequestData requestData = new RequestData(); requestData.setSigVerCrypto(sigCrypto); WSSConfig wssConfig = WSSConfig.getNewInstance(); requestData.setWssConfig(wssConfig); // requestData.setCallbackHandler(callbackHandler); SAMLKeyInfo samlKeyInfo = null; KeyInfo keyInfo = signature.getKeyInfo(); if (keyInfo != null) { try { Document doc = signature.getDOM().getOwnerDocument(); requestData.setWsDocInfo(new WSDocInfo(doc)); samlKeyInfo = SAMLUtil.getCredentialFromKeyInfo( keyInfo.getDOM(), new WSSSAMLKeyInfoProcessor(requestData), sigCrypto ); } catch (WSSecurityException ex) { LOG.debug("Error in getting KeyInfo from SAML AuthnRequest: {}", ex.getMessage(), ex); throw ex; } } if (samlKeyInfo == null) { LOG.debug("No KeyInfo supplied in the AuthnRequest signature"); throw new WSSecurityException(WSSecurityException.ErrorCode.FAILURE, "invalidSAMLsecurity"); } // Validate Signature against profiles validateSignatureAgainstProfiles(signature, samlKeyInfo); // Now verify trust on the signature Credential trustCredential = new Credential(); trustCredential.setPublicKey(samlKeyInfo.getPublicKey()); trustCredential.setCertificates(samlKeyInfo.getCerts()); try { Validator signatureValidator = new SignatureTrustValidator(); signatureValidator.validate(trustCredential, requestData); } catch (WSSecurityException e) { LOG.debug("Error in validating signature on SAML AuthnRequest: {}", e.getMessage(), e); throw new WSSecurityException(WSSecurityException.ErrorCode.FAILURE, "invalidSAMLsecurity"); } }