XSLT Function Nonce

Returns Base64 encoded nonce.

NAMESPACE

xmlns:crypto="http://xsl.origam.com/crypto"

SYNTAX

string Nonce()

EXAMPLE

Stylesheet

<?xml version="1.0" encoding="UTF-8"?> 
<xsl:stylesheet 
    xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0" 
    xmlns:AS="http://schema.advantages.cz/AsapFunctions" 
    xmlns:date="http://exslt.org/dates-and-times" 
    xmlns:crypto="http://xsl.origam.com/crypto" 
    exclude-result-prefixes="AS date crypto"> 
    <xsl:template match="/"> 
        <xsl:value-of select="crypto:Nonce()"/>
    </xsl:template> 
</xsl:stylesheet>