1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
/* * Copyright 2006 Sun Microsystems, Inc. All rights reserved. */ /* * $Id: DOMBase64Transform.java,v 1.14 2005/05/10 18:15:31 mullan Exp $ */ package org.jcp.xml.dsig.internal.dom; import java.security.InvalidAlgorithmParameterException; import javax.xml.crypto.XMLStructure; import javax.xml.crypto.dsig.spec.TransformParameterSpec; /** * DOM-based implementation of Base64 Encoding Transform. * (Uses Apache XML-Sec Transform implementation) * * @author Sean Mullan */ public final class DOMBase64Transform extends ApacheTransform { public void init(TransformParameterSpec params) throws InvalidAlgorithmParameterException { if (params != null) { throw new InvalidAlgorithmParameterException("params must be null"); } } }