Search in sources :

Example 1 with TransformEnvelopedSignature

use of org.apache.xml.security.stax.impl.transformer.TransformEnvelopedSignature in project santuario-java by apache.

the class TransformEnvelopedSignatureTest method testXMLSecEventToOutputStreamStreamAPI.

@Test
public void testXMLSecEventToOutputStreamStreamAPI() throws Exception {
    TransformEnvelopedSignature transformEnvelopedSignature = new TransformEnvelopedSignature();
    final ByteArrayOutputStream byteArrayOutputStream = new ByteArrayOutputStream();
    transformEnvelopedSignature.setOutputStream(byteArrayOutputStream);
    XMLEventReader xmlSecEventReader = xmlInputFactory.createXMLEventReader(this.getClass().getClassLoader().getResourceAsStream("com/phaos/phaos-xmldsig-three/signature-rsa-enveloped.xml"));
    while (xmlSecEventReader.hasNext()) {
        XMLSecEvent xmlSecEvent = (XMLSecEvent) xmlSecEventReader.nextEvent();
        transformEnvelopedSignature.transform(xmlSecEvent);
    }
    transformEnvelopedSignature.doFinal();
    Assert.assertEquals(207, byteArrayOutputStream.size());
}
Also used : TransformEnvelopedSignature(org.apache.xml.security.stax.impl.transformer.TransformEnvelopedSignature) XMLEventReader(javax.xml.stream.XMLEventReader) ByteArrayOutputStream(java.io.ByteArrayOutputStream) XMLSecEvent(org.apache.xml.security.stax.ext.stax.XMLSecEvent) Test(org.junit.Test)

Example 2 with TransformEnvelopedSignature

use of org.apache.xml.security.stax.impl.transformer.TransformEnvelopedSignature in project santuario-java by apache.

the class TransformEnvelopedSignatureTest method testXMLSecEventToInputStreamAPI.

@Test
public void testXMLSecEventToInputStreamAPI() throws Exception {
    TransformEnvelopedSignature transformEnvelopedSignature = new TransformEnvelopedSignature();
    final ByteArrayOutputStream byteArrayOutputStream = new ByteArrayOutputStream();
    Transformer transformer = new Transformer() {

        @Override
        public void setOutputStream(OutputStream outputStream) throws XMLSecurityException {
        }

        @Override
        public void setTransformer(Transformer transformer) throws XMLSecurityException {
        }

        @Override
        public void setProperties(Map<String, Object> properties) throws XMLSecurityException {
        }

        @Override
        public XMLSecurityConstants.TransformMethod getPreferredTransformMethod(XMLSecurityConstants.TransformMethod forInput) {
            return XMLSecurityConstants.TransformMethod.InputStream;
        }

        @Override
        public void transform(XMLSecEvent xmlSecEvent) throws XMLStreamException {
            Assert.fail("unexpected call to transform(XMLSecEvent");
        }

        @Override
        public void transform(InputStream inputStream) throws XMLStreamException {
            try {
                XMLSecurityUtils.copy(inputStream, byteArrayOutputStream);
            } catch (IOException e) {
                throw new RuntimeException(e);
            }
        }

        @Override
        public void doFinal() throws XMLStreamException {
        }
    };
    transformEnvelopedSignature.setTransformer(transformer);
    XMLEventReader xmlSecEventReader = xmlInputFactory.createXMLEventReader(this.getClass().getClassLoader().getResourceAsStream("com/phaos/phaos-xmldsig-three/signature-rsa-enveloped.xml"));
    while (xmlSecEventReader.hasNext()) {
        XMLSecEvent xmlSecEvent = (XMLSecEvent) xmlSecEventReader.nextEvent();
        transformEnvelopedSignature.transform(xmlSecEvent);
    }
    transformEnvelopedSignature.doFinal();
    Assert.assertEquals(207, byteArrayOutputStream.size());
}
Also used : XMLSecurityConstants(org.apache.xml.security.stax.ext.XMLSecurityConstants) Transformer(org.apache.xml.security.stax.ext.Transformer) InputStream(java.io.InputStream) OutputStream(java.io.OutputStream) ByteArrayOutputStream(java.io.ByteArrayOutputStream) TransformEnvelopedSignature(org.apache.xml.security.stax.impl.transformer.TransformEnvelopedSignature) XMLEventReader(javax.xml.stream.XMLEventReader) ByteArrayOutputStream(java.io.ByteArrayOutputStream) IOException(java.io.IOException) Map(java.util.Map) XMLSecEvent(org.apache.xml.security.stax.ext.stax.XMLSecEvent) Test(org.junit.Test)

Example 3 with TransformEnvelopedSignature

use of org.apache.xml.security.stax.impl.transformer.TransformEnvelopedSignature in project santuario-java by apache.

the class TransformEnvelopedSignatureTest method testXMLSecEventToXMLSecEventAPI.

@Test
public void testXMLSecEventToXMLSecEventAPI() throws Exception {
    TransformEnvelopedSignature transformEnvelopedSignature = new TransformEnvelopedSignature();
    final List<XMLSecEvent> xmlSecEvents = new ArrayList<>();
    Transformer transformer = new Transformer() {

        @Override
        public void setOutputStream(OutputStream outputStream) throws XMLSecurityException {
        }

        @Override
        public void setTransformer(Transformer transformer) throws XMLSecurityException {
        }

        @Override
        public void setProperties(Map<String, Object> properties) throws XMLSecurityException {
        }

        @Override
        public XMLSecurityConstants.TransformMethod getPreferredTransformMethod(XMLSecurityConstants.TransformMethod forInput) {
            return XMLSecurityConstants.TransformMethod.XMLSecEvent;
        }

        @Override
        public void transform(XMLSecEvent xmlSecEvent) throws XMLStreamException {
            xmlSecEvents.add(xmlSecEvent);
        }

        @Override
        public void transform(InputStream inputStream) throws XMLStreamException {
            Assert.fail("unexpected call to transform(InputStream");
        }

        @Override
        public void doFinal() throws XMLStreamException {
        }
    };
    transformEnvelopedSignature.setTransformer(transformer);
    XMLEventReader xmlSecEventReader = xmlInputFactory.createXMLEventReader(this.getClass().getClassLoader().getResourceAsStream("com/phaos/phaos-xmldsig-three/signature-rsa-enveloped.xml"));
    while (xmlSecEventReader.hasNext()) {
        XMLSecEvent xmlSecEvent = (XMLSecEvent) xmlSecEventReader.nextEvent();
        transformEnvelopedSignature.transform(xmlSecEvent);
    }
    transformEnvelopedSignature.doFinal();
    Assert.assertEquals(19, xmlSecEvents.size());
}
Also used : XMLSecurityConstants(org.apache.xml.security.stax.ext.XMLSecurityConstants) Transformer(org.apache.xml.security.stax.ext.Transformer) InputStream(java.io.InputStream) OutputStream(java.io.OutputStream) ByteArrayOutputStream(java.io.ByteArrayOutputStream) ArrayList(java.util.ArrayList) TransformEnvelopedSignature(org.apache.xml.security.stax.impl.transformer.TransformEnvelopedSignature) XMLEventReader(javax.xml.stream.XMLEventReader) Map(java.util.Map) XMLSecEvent(org.apache.xml.security.stax.ext.stax.XMLSecEvent) Test(org.junit.Test)

Aggregations

ByteArrayOutputStream (java.io.ByteArrayOutputStream)3 XMLEventReader (javax.xml.stream.XMLEventReader)3 XMLSecEvent (org.apache.xml.security.stax.ext.stax.XMLSecEvent)3 TransformEnvelopedSignature (org.apache.xml.security.stax.impl.transformer.TransformEnvelopedSignature)3 Test (org.junit.Test)3 InputStream (java.io.InputStream)2 OutputStream (java.io.OutputStream)2 Map (java.util.Map)2 Transformer (org.apache.xml.security.stax.ext.Transformer)2 XMLSecurityConstants (org.apache.xml.security.stax.ext.XMLSecurityConstants)2 IOException (java.io.IOException)1 ArrayList (java.util.ArrayList)1