package at.gv.egovernment.moa.spss.api.common; /** * A Transform performing a Base64 decoding. * * @author Patrick Peck * @version $Id$ */ public interface Base64Transform extends Transform { /** Algorithm URI of the Base64 Transform type. */ public static final String BASE64_DECODING = "http://www.w3.org/2000/09/xmldsig#base64"; }