CVSROOT: /cvsroot/classpath Module name: classpath Changes by: Raif S. Naffah <raif> 06/06/04 05:29:44
Modified files: gnu/java/security/sig: ISignature.java gnu/java/security: PolicyFile.java gnu/java/security/util: ExpirableObject.java SimpleList.java gnu/java/security/x509/ext: GeneralNames.java gnu/java/security/x509: Util.java . : ChangeLog gnu/java/security/sig/rsa: RSAPSSSignatureRawCodec.java gnu/java/security/provider: PKIXCertPathValidatorImpl.java Log message: 2006-06-04 Raif S. Naffah <[EMAIL PROTECTED]> * gnu/java/security/PolicyFile.java: Updated copyright year. (logger): Increased visibility. * gnu/java/security/x509/Util.java: Updated copyright year. (hexDump): Fix javadoc @link. * gnu/java/security/x509/ext/GeneralNames.java: Updated copyright year. Removed unused import. * gnu/java/security/sig/rsa/RSAPSSSignatureRawCodec.java: Fix javadoc @link. * gnu/java/security/sig/ISignature.java (SOURCE_OF_RANDOMNESS): Likewise. * gnu/java/security/util/ExpirableObject.java: Likewise. (destroy): Likewise. * gnu/java/security/util/SimpleList.java (SimpleList): Likewise. * gnu/java/security/provider/PKIXCertPathValidatorImpl.java: Updated copyright year. (checkCRL): Fix javadoc @param. CVSWeb URLs: http://cvs.savannah.gnu.org/viewcvs/classpath/gnu/java/security/sig/ISignature.java?cvsroot=classpath&r1=1.2&r2=1.3 http://cvs.savannah.gnu.org/viewcvs/classpath/gnu/java/security/PolicyFile.java?cvsroot=classpath&r1=1.7&r2=1.8 http://cvs.savannah.gnu.org/viewcvs/classpath/gnu/java/security/util/ExpirableObject.java?cvsroot=classpath&r1=1.1&r2=1.2 http://cvs.savannah.gnu.org/viewcvs/classpath/gnu/java/security/util/SimpleList.java?cvsroot=classpath&r1=1.1&r2=1.2 http://cvs.savannah.gnu.org/viewcvs/classpath/gnu/java/security/x509/ext/GeneralNames.java?cvsroot=classpath&r1=1.4&r2=1.5 http://cvs.savannah.gnu.org/viewcvs/classpath/gnu/java/security/x509/Util.java?cvsroot=classpath&r1=1.2&r2=1.3 http://cvs.savannah.gnu.org/viewcvs/classpath/ChangeLog?cvsroot=classpath&r1=1.7643&r2=1.7644 http://cvs.savannah.gnu.org/viewcvs/classpath/gnu/java/security/sig/rsa/RSAPSSSignatureRawCodec.java?cvsroot=classpath&r1=1.2&r2=1.3 http://cvs.savannah.gnu.org/viewcvs/classpath/gnu/java/security/provider/PKIXCertPathValidatorImpl.java?cvsroot=classpath&r1=1.6&r2=1.7 Patches: Index: sig/ISignature.java =================================================================== RCS file: /cvsroot/classpath/classpath/gnu/java/security/sig/ISignature.java,v retrieving revision 1.2 retrieving revision 1.3 diff -u -b -r1.2 -r1.3 --- sig/ISignature.java 26 Mar 2006 22:57:46 -0000 1.2 +++ sig/ISignature.java 4 Jun 2006 05:29:43 -0000 1.3 @@ -71,9 +71,9 @@ /** * Property name of an optional [EMAIL PROTECTED] java.security.SecureRandom}, - * [EMAIL PROTECTED] java.util.Random}, or [EMAIL PROTECTED] gnu.crypto.prng.IRandom} instance to + * [EMAIL PROTECTED] java.util.Random}, or [EMAIL PROTECTED] gnu.java.security.prng.IRandom} instance to * use. The default is to use a classloader singleton from - * [EMAIL PROTECTED] gnu.crypto.util.PRNG}. + * [EMAIL PROTECTED] gnu.java.security.util.PRNG}. */ public static final String SOURCE_OF_RANDOMNESS = "gnu.crypto.sig.prng"; Index: PolicyFile.java =================================================================== RCS file: /cvsroot/classpath/classpath/gnu/java/security/PolicyFile.java,v retrieving revision 1.7 retrieving revision 1.8 diff -u -b -r1.7 -r1.8 --- PolicyFile.java 18 Sep 2005 03:06:39 -0000 1.7 +++ PolicyFile.java 4 Jun 2006 05:29:43 -0000 1.8 @@ -1,5 +1,5 @@ /* PolicyFile.java -- policy file reader - Copyright (C) 2004, 2005 Free Software Foundation, Inc. + Copyright (C) 2004, 2005, 2006 Free Software Foundation, Inc. This file is part of GNU Classpath. @@ -148,7 +148,7 @@ // Constants and fields. // ------------------------------------------------------------------------- - private static final Logger logger = SystemLogger.SYSTEM; + protected static final Logger logger = SystemLogger.SYSTEM; private static final String DEFAULT_POLICY = SystemProperties.getProperty("java.home") Index: util/ExpirableObject.java =================================================================== RCS file: /cvsroot/classpath/classpath/gnu/java/security/util/ExpirableObject.java,v retrieving revision 1.1 retrieving revision 1.2 diff -u -b -r1.1 -r1.2 --- util/ExpirableObject.java 26 Jan 2006 02:25:11 -0000 1.1 +++ util/ExpirableObject.java 4 Jun 2006 05:29:43 -0000 1.2 @@ -51,7 +51,7 @@ * once a timeout elapses, will automatically call the [EMAIL PROTECTED] * Destroyable#destroy()} method. * - * <p>Concrete subclasses must implement the [EMAIL PROTECTED] doDestroy()} method + * <p>Concrete subclasses must implement the [EMAIL PROTECTED] #doDestroy()} method * instead of [EMAIL PROTECTED] Destroyable#destroy()}; the behavior of that method * should match exactly the behavior desired of <code>destroy()</code>. * @@ -111,7 +111,7 @@ // ------------------------------------------------------------------------- /** - * Destroys this object. This method calls [EMAIL PROTECTED] doDestroy}, then, if + * Destroys this object. This method calls [EMAIL PROTECTED] #doDestroy}, then, if * no exception is thrown, cancels the task that would destroy this object * when the timeout is reached. * Index: util/SimpleList.java =================================================================== RCS file: /cvsroot/classpath/classpath/gnu/java/security/util/SimpleList.java,v retrieving revision 1.1 retrieving revision 1.2 diff -u -b -r1.1 -r1.2 --- util/SimpleList.java 26 Jan 2006 02:25:11 -0000 1.1 +++ util/SimpleList.java 4 Jun 2006 05:29:43 -0000 1.2 @@ -61,7 +61,7 @@ /** * Create a singleton list. * - * @param e1 The first element. + * @param element The first element. */ public SimpleList(final Object element) { Index: x509/ext/GeneralNames.java =================================================================== RCS file: /cvsroot/classpath/classpath/gnu/java/security/x509/ext/GeneralNames.java,v retrieving revision 1.4 retrieving revision 1.5 diff -u -b -r1.4 -r1.5 --- x509/ext/GeneralNames.java 2 Feb 2006 07:16:22 -0000 1.4 +++ x509/ext/GeneralNames.java 4 Jun 2006 05:29:43 -0000 1.5 @@ -1,5 +1,5 @@ /* GeneralNames.java -- the GeneralNames object - Copyright (C) 2004 Free Software Foundation, Inc. + Copyright (C) 2004, 2006 Free Software Foundation, Inc. This file is part of GNU Classpath. @@ -42,7 +42,6 @@ import gnu.java.security.der.DER; import gnu.java.security.der.DERReader; import gnu.java.security.der.DERValue; -import gnu.java.security.x509.X500DistinguishedName; import java.io.IOException; import java.net.InetAddress; Index: x509/Util.java =================================================================== RCS file: /cvsroot/classpath/classpath/gnu/java/security/x509/Util.java,v retrieving revision 1.2 retrieving revision 1.3 diff -u -b -r1.2 -r1.3 --- x509/Util.java 2 Jul 2005 20:32:14 -0000 1.2 +++ x509/Util.java 4 Jun 2006 05:29:44 -0000 1.3 @@ -1,5 +1,5 @@ /* Util.java -- Miscellaneous utility methods. - Copyright (C) 2004 Free Software Foundation, Inc. + Copyright (C) 2004, 2006 Free Software Foundation, Inc. This file is part of GNU Classpath. @@ -155,7 +155,7 @@ } /** - * See [EMAIL PROTECTED] #hexDump(byte[],int,int)}. + * See [EMAIL PROTECTED] #hexDump(byte[],int,int,String)}. */ public static String hexDump(byte[] buf, String prefix) { Index: sig/rsa/RSAPSSSignatureRawCodec.java =================================================================== RCS file: /cvsroot/classpath/classpath/gnu/java/security/sig/rsa/RSAPSSSignatureRawCodec.java,v retrieving revision 1.2 retrieving revision 1.3 diff -u -b -r1.2 -r1.3 --- sig/rsa/RSAPSSSignatureRawCodec.java 26 Mar 2006 22:57:46 -0000 1.2 +++ sig/rsa/RSAPSSSignatureRawCodec.java 4 Jun 2006 05:29:44 -0000 1.3 @@ -44,7 +44,7 @@ import java.io.ByteArrayOutputStream; /** - * <p>An object that implements the [EMAIL PROTECTED] gnu.crypto.sig.ISignatureCodec} + * <p>An object that implements the [EMAIL PROTECTED] ISignatureCodec} * operations for the <i>Raw</i> format to use with RSA-PSS signatures.</p> */ public class RSAPSSSignatureRawCodec implements ISignatureCodec Index: provider/PKIXCertPathValidatorImpl.java =================================================================== RCS file: /cvsroot/classpath/classpath/gnu/java/security/provider/PKIXCertPathValidatorImpl.java,v retrieving revision 1.6 retrieving revision 1.7 diff -u -b -r1.6 -r1.7 --- provider/PKIXCertPathValidatorImpl.java 26 Feb 2006 04:49:18 -0000 1.6 +++ provider/PKIXCertPathValidatorImpl.java 4 Jun 2006 05:29:44 -0000 1.7 @@ -1,5 +1,5 @@ /* PKIXCertPathValidatorImpl.java -- PKIX certificate path validator. - Copyright (C) 2004, 2005 Free Software Foundation, Inc. + Copyright (C) 2004, 2005, 2006 Free Software Foundation, Inc. This file is part of GNU Classpath. @@ -435,7 +435,7 @@ * @param crl The CRL being checked. * @param path The path this CRL is being checked against. * @param now The value to use as 'now'. - * @param pubKeySubject The subject of the public key. + * @param pubKeyCert The certificate authenticating the public key. * @param pubKey The public key to check. * @return True if the CRL is acceptable. */