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