home *** CD-ROM | disk | FTP | other *** search
/ Java 1.2 How-To / JavaHowTo.iso / 3rdParty / jbuilder / unsupported / JDK1.2beta3 / SOURCE / SRC.ZIP / java / security / PublicKey.java < prev    next >
Encoding:
Java Source  |  1998-03-20  |  1.0 KB  |  36 lines

  1. /*
  2.  * @(#)PublicKey.java    1.21 98/03/18
  3.  *
  4.  * Copyright 1996, 1997 by Sun Microsystems, Inc.,
  5.  * 901 San Antonio Road, Palo Alto, California, 94303, U.S.A.
  6.  * All rights reserved.
  7.  *
  8.  * This software is the confidential and proprietary information
  9.  * of Sun Microsystems, Inc. ("Confidential Information").  You
  10.  * shall not disclose such Confidential Information and shall use
  11.  * it only in accordance with the terms of the license agreement
  12.  * you entered into with Sun.
  13.  */
  14.  
  15. package java.security;
  16.  
  17. /**
  18.  * <p>A public key. This interface contains no methods or constants.
  19.  * It merely serves to group (and provide type safety for) all public key 
  20.  * interfaces. 
  21.  * 
  22.  * Note: The specialized public key interfaces extend this interface.
  23.  * See, for example, the DSAPublicKey interface in
  24.  * <code>java.security.interfaces</code>.
  25.  *
  26.  * @see Key
  27.  * @see PublicKey
  28.  * @see Certificate
  29.  * @see Signature#initVerify
  30.  * @see java.security.interfaces.DSAPublicKey
  31.  * 
  32.  * @version 1.21 98/03/18
  33.  */
  34.  
  35. public interface PublicKey extends Key { }
  36.