Commit 0f225701 by Tom Tromey Committed by Tom Tromey

PublicKey.java: Extend Key.

	* java/security/PublicKey.java: Extend Key.
	* java/security/PrivateKey.java: Extend Key.

From-SVN: r42886
parent ae3ca0a9
2001-06-04 Tom Tromey <tromey@redhat.com>
* java/security/PublicKey.java: Extend Key.
* java/security/PrivateKey.java: Extend Key.
2001-06-02 Anthony Green <green@redhat.com>
* java/lang/natRuntime.cc (_Jv_FindSymbolInExecutable): Provide an
......
/* PrivateKey.java -- "Super-interface" for all private keys
Copyright (C) 1998 Free Software Foundation, Inc.
Copyright (C) 1998, 2001 Free Software Foundation, Inc.
This file is part of GNU Classpath.
......@@ -35,6 +35,6 @@ package java.security;
*
* @author Aaron M. Renn (arenn@urbanophile.com)
*/
public interface PrivateKey
public interface PrivateKey extends Key
{
}
/* PublicKey.java -- "Super-interface" for all public keys
Copyright (C) 1998 Free Software Foundation, Inc.
Copyright (C) 1998, 2001 Free Software Foundation, Inc.
This file is part of GNU Classpath.
......@@ -34,6 +34,6 @@ package java.security;
*
* @author Aaron M. Renn (arenn@urbanophile.com)
*/
public interface PublicKey
public interface PublicKey extends Key
{
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment