1. /*
  2. * @(#)PublicKey.java 1.28 00/02/02
  3. *
  4. * Copyright 1996-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;
  11. /**
  12. * <p>A public key. This interface contains no methods or constants.
  13. * It merely serves to group (and provide type safety for) all public key
  14. * interfaces.
  15. *
  16. * Note: The specialized public key interfaces extend this interface.
  17. * See, for example, the DSAPublicKey interface in
  18. * <code>java.security.interfaces</code>.
  19. *
  20. * @see Key
  21. * @see PrivateKey
  22. * @see Certificate
  23. * @see Signature#initVerify
  24. * @see java.security.interfaces.DSAPublicKey
  25. * @see java.security.interfaces.RSAPublicKey
  26. *
  27. * @version 1.28 00/02/02
  28. */
  29. public interface PublicKey extends Key {
  30. // Declare serialVersionUID to be compatible with JDK1.1
  31. static final long serialVersionUID = 7187392471159151072L;
  32. }