1 /*2 * Copyright 2006 Sun Microsystems, Inc. All rights reserved.3 */4 /*5 * $Id: DigestMethodParameterSpec.java,v 1.3 2005/05/10 16:40:17 mullan Exp $6 */7 package javax.xml.crypto.dsig.spec;8 9 import javax.xml.crypto.dsig.DigestMethod;10 import java.security.spec.AlgorithmParameterSpec ;11 12 /**13 * A specification of algorithm parameters for a {@link DigestMethod}14 * algorithm. The purpose of this interface is to group (and provide type 15 * safety for) all digest method parameter specifications. All digest method16 * parameter specifications must implement this interface.17 *18 * @author Sean Mullan19 * @author JSR 105 Expert Group20 * @since 1.621 * @see DigestMethod22 */23 public interface DigestMethodParameterSpec extends AlgorithmParameterSpec {}24