Skip to content

Instantly share code, notes, and snippets.

@estebanroblesluna
Created December 1, 2010 14:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save estebanroblesluna/723513 to your computer and use it in GitHub Desktop.
Save estebanroblesluna/723513 to your computer and use it in GitHub Desktop.
<?xml version="1.0" encoding="UTF-8"?>
<mule xmlns="http://www.mulesource.org/schema/mule/core/2.2"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:file="http://www.mulesource.org/schema/mule/file/2.2"
xmlns:pgp="http://www.mulesource.org/schema/mule/pgp/2.2"
xmlns:vm="http://www.mulesource.org/schema/mule/vm/2.2"
xmlns:spring="http://www.springframework.org/schema/beans"
xsi:schemaLocation="
http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans-2.0.xsd
http://www.mulesource.org/schema/mule/core/2.2
http://www.mulesource.org/schema/mule/core/2.2/mule.xsd
http://www.mulesource.org/schema/mule/file/2.2
http://www.mulesource.org/schema/mule/file/2.2/mule-file.xsd
http://www.mulesource.org/schema/mule/pgp/2.2
http://www.mulesource.org/schema/mule/pgp/2.2/mule-pgp.xsd
http://www.mulesource.org/schema/mule/vm/2.2
http://www.mulesource.org/schema/mule/vm/2.2/mule-vm.xsd
http://www.mulesource.org/schema/mule/ee/core/2.2
http://www.mulesource.org/schema/mule/ee/core/2.2/mule-ee.xsd">
<spring:bean id="pgpKeyManager" class="org.mule.module.pgp.PGPKeyRingImpl"
init-method="initialise">
<spring:property name="publicKeyRingFileName"
value="./serverPublic.gpg" />
<spring:property name="secretKeyRingFileName"
value="./serverPrivate.gpg" />
<spring:property name="secretAliasId" value="6247672658342245276" />
<spring:property name="secretPassphrase" value="TestingPassphrase" />
</spring:bean>
<spring:bean id="fakeCredentialAccessor"
class="org.mule.security.MuleHeaderCredentialsAccessor" />
<pgp:security-manager>
<pgp:security-provider name="pgpSecurityProvider"
keyManager-ref="pgpKeyManager" />
<pgp:keybased-encryption-strategy
name="keyBasedEncryptionStrategy" keyManager-ref="pgpKeyManager"
credentialsAccessor-ref="fakeCredentialAccessor" />
</pgp:security-manager>
<file:connector name="fileConnector"
pollingFrequency="100000" streaming="true" autoDelete="true"
workDirectory="./tmp" />
<message-properties-transformer name="addPropertyS">
<add-message-property key="MULE_USER"
value="Mule server &lt;mule_server@mule.com&gt;" />
</message-properties-transformer>
<model name="pgpPerformance">
<service name="pgpEncryptFileProcessor">
<inbound>
<file:inbound-endpoint
connector-ref="fileConnector" path="./unencrypted" />
</inbound>
<outbound>
<pass-through-router>
<file:outbound-endpoint
connector-ref="fileConnector" path="./encrypted">
<transformer ref="addPropertyS" />
<encrypt-transformer name="pgpEncrypt"
strategy-ref="keyBasedEncryptionStrategy" />
</file:outbound-endpoint>
</pass-through-router>
</outbound>
</service>
<service name="pgpDecryptFileProcessor">
<inbound>
<file:inbound-endpoint
connector-ref="fileConnector" path="./encrypted"
fileAge="20000" />
</inbound>
<outbound>
<pass-through-router>
<file:outbound-endpoint
connector-ref="fileConnector" path="./decrypted">
<transformer ref="addPropertyS" />
<decrypt-transformer name="pgpDecrypt"
strategy-ref="keyBasedEncryptionStrategy" />
</file:outbound-endpoint>
</pass-through-router>
</outbound>
</service>
</model>
</mule>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment