Skip to content

Commit

Permalink
Add a macro definition to allow testing signing with the samlsign tool.
Browse files Browse the repository at this point in the history
  • Loading branch information
iay committed Aug 28, 2009
1 parent 0d695d7 commit cdb894d
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions build.xml
Original file line number Diff line number Diff line change
Expand Up @@ -500,6 +500,28 @@
</sequential>
</macrodef>

<macrodef name="SAMLSIGN.SIGN.uk">
<attribute name="i"/>
<attribute name="o"/>
<sequential>
<SAMLSIGN i="@{i}">
<args>
<arg value="--sign"/>
<arg value="--keystore"/>
<arg value="${null.device}"/>
<arg value="--storetype"/>
<arg value="${keystore.uk.sign.type}"/>
<arg value="--alias"/>
<arg value="${keystore.uk.sign.alias}"/>
<arg value="--password"/>
<arg value="${keystore.pass}"/>
<arg value="--out"/>
<arg value="${xml.dir}/@{o}"/>
</args>
</SAMLSIGN>
</sequential>
</macrodef>

<macrodef name="SAMLSIGN.VFY.uk">
<attribute name="i"/><!-- input file, assumed to be in the XML directory -->
<sequential>
Expand Down

0 comments on commit cdb894d

Please sign in to comment.