1 /* 2 * @(#)AlgorithmParameterSpec.java 1.14 03/12/19 3 * 4 * Copyright 2004 Sun Microsystems, Inc. All rights reserved. 5 * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. 6 */ 7 8 package java.security.spec; 9 10 /** 11 * A (transparent) specification of cryptographic parameters. 12 * 13 * <P> This interface contains no methods or constants. Its only purpose 14 * is to group (and provide type safety for) all parameter specifications. 15 * All parameter specifications must implement this interface. 16 * 17 * @author Jan Luehe 18 * 19 * @version 1.14, 12/19/03 20 * 21 * @see java.security.AlgorithmParameters 22 * @see DSAParameterSpec 23 * 24 * @since 1.2 25 */ 26 27 public interface AlgorithmParameterSpec { } 28