From: Tom Tromey Date: Mon, 4 Jun 2001 22:55:49 +0000 (+0000) Subject: PublicKey.java: Extend Key. X-Git-Tag: prereleases/libstdc++-3.0.95~4015 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=0f2257011a908a8ad115cfe0709f7367e37209e8;p=thirdparty%2Fgcc.git PublicKey.java: Extend Key. * java/security/PublicKey.java: Extend Key. * java/security/PrivateKey.java: Extend Key. From-SVN: r42886 --- diff --git a/libjava/ChangeLog b/libjava/ChangeLog index f2bfa79ea478..66c657f46fb2 100644 --- a/libjava/ChangeLog +++ b/libjava/ChangeLog @@ -1,3 +1,8 @@ +2001-06-04 Tom Tromey + + * java/security/PublicKey.java: Extend Key. + * java/security/PrivateKey.java: Extend Key. + 2001-06-02 Anthony Green * java/lang/natRuntime.cc (_Jv_FindSymbolInExecutable): Provide an diff --git a/libjava/java/security/PrivateKey.java b/libjava/java/security/PrivateKey.java index 7a736a5a538d..a0bdd6b5f90f 100644 --- a/libjava/java/security/PrivateKey.java +++ b/libjava/java/security/PrivateKey.java @@ -1,5 +1,5 @@ /* 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 { } diff --git a/libjava/java/security/PublicKey.java b/libjava/java/security/PublicKey.java index a56ffe48ab57..01279635e3e4 100644 --- a/libjava/java/security/PublicKey.java +++ b/libjava/java/security/PublicKey.java @@ -1,5 +1,5 @@ /* 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 { }