diff options
author | Tom Tromey <tromey@redhat.com> | 2001-06-04 22:55:49 +0000 |
---|---|---|
committer | Tom Tromey <tromey@gcc.gnu.org> | 2001-06-04 22:55:49 +0000 |
commit | 0f2257011a908a8ad115cfe0709f7367e37209e8 (patch) | |
tree | 6496e86a304cd8330d2e4e3974a2ab0b71eb2df7 /libjava/java | |
parent | ae3ca0a9855cad2224da18aacd3105e6c6cb3f7f (diff) | |
download | gcc-0f2257011a908a8ad115cfe0709f7367e37209e8.zip gcc-0f2257011a908a8ad115cfe0709f7367e37209e8.tar.gz gcc-0f2257011a908a8ad115cfe0709f7367e37209e8.tar.bz2 |
PublicKey.java: Extend Key.
* java/security/PublicKey.java: Extend Key.
* java/security/PrivateKey.java: Extend Key.
From-SVN: r42886
Diffstat (limited to 'libjava/java')
-rw-r--r-- | libjava/java/security/PrivateKey.java | 4 | ||||
-rw-r--r-- | libjava/java/security/PublicKey.java | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/libjava/java/security/PrivateKey.java b/libjava/java/security/PrivateKey.java index 7a736a5..a0bdd6b 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 a56ffe4..0127963 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 { } |