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