KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > javax > xml > crypto > dsig > spec > DigestMethodParameterSpec


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 JavaDoc;
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 method
16  * parameter specifications must implement this interface.
17  *
18  * @author Sean Mullan
19  * @author JSR 105 Expert Group
20  * @since 1.6
21  * @see DigestMethod
22  */

23 public interface DigestMethodParameterSpec extends AlgorithmParameterSpec JavaDoc {}
24
Popular Tags