Example for base64 encoding extension

This extension is useful if you want to encrypt any field in your BOD as a base64 string. For example, use the following XSLT sample to assign any base64-encoded string to an element called 'EncodedData'.

<EncodedData>
	<xsl:value-of select="extensions:encodeString('An Encoded String')"/>
</EncodedData>