This is the mail archive of the java-patches@gcc.gnu.org mailing list for the Java project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Patch: EncodedKeySpec implements KeySpec



EncodedKeySpec is supposed to impement KeySpec.

Ok to commit?

AG


2001-07-09  Anthony Green  <green@redhat.com>

	* java/security/spec/EncodedKeySpec.java: This interface
	implements KeySpec.

Index: java/security/spec/EncodedKeySpec.java
===================================================================
RCS file: /cvs/gcc/gcc/libjava/java/security/spec/EncodedKeySpec.java,v
retrieving revision 1.1
diff -u -p -r1.1 EncodedKeySpec.java
--- EncodedKeySpec.java	2001/04/25 15:45:13	1.1
+++ EncodedKeySpec.java	2001/07/11 02:47:33
@@ -1,5 +1,5 @@
 /* EncodedKeySpec.java --- Encoded Key Specificaton class
-   Copyright (C) 1999 Free Software Foundation, Inc.
+   Copyright (C) 1999, 2001  Free Software Foundation, Inc.
 
 This file is part of GNU Classpath.
 
@@ -35,7 +35,7 @@ package java.security.spec;
 
 	@author Mark Benvenuto
 */
-public abstract class EncodedKeySpec 
+public abstract class EncodedKeySpec implements KeySpec
 {
 
   private byte[] encodedKey;


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]