Index: java/security/AlgorithmParameterGenerator.java =================================================================== RCS file: /cvsroot/classpath/classpath/java/security/AlgorithmParameterGenerator.java,v retrieving revision 1.8 diff -u -r1.8 AlgorithmParameterGenerator.java --- java/security/AlgorithmParameterGenerator.java 23 Apr 2003 23:15:47 -0000 1.8 +++ java/security/AlgorithmParameterGenerator.java 17 Apr 2004 18:45:50 -0000 @@ -67,7 +67,7 @@ * system parameters, for example, the parameter generation values usually * consist of the size of the prime modulus and the size of the random * exponent, both specified in number of bits. - * * *

In case the client does not explicitly initialize the * AlgorithmParameterGenerator (via a call to an init() Index: java/security/AlgorithmParameters.java =================================================================== RCS file: /cvsroot/classpath/classpath/java/security/AlgorithmParameters.java,v retrieving revision 1.8 diff -u -r1.8 AlgorithmParameters.java --- java/security/AlgorithmParameters.java 23 Apr 2003 23:15:47 -0000 1.8 +++ java/security/AlgorithmParameters.java 17 Apr 2004 18:45:50 -0000 @@ -71,7 +71,7 @@ * parameter specification or parameter encoding.

* *

A transparent parameter specification is obtained from an - * AlgorithmParameters object via a call to + * AlgorithmParameters object via a call to * getParameterSpec(), and a byte encoding of the parameters is * obtained via a call to getEncoded().

* Index: java/security/CodeSource.java =================================================================== RCS file: /cvsroot/classpath/classpath/java/security/CodeSource.java,v retrieving revision 1.5 diff -u -r1.5 CodeSource.java --- java/security/CodeSource.java 29 Mar 2002 08:30:51 -0000 1.5 +++ java/security/CodeSource.java 17 Apr 2004 18:45:50 -0000 @@ -159,17 +159,22 @@ * object must have all the certifcates this object has (but may have more), * and must have a location that is a subset of this object's. In order * for this object to imply the specified object, the following must be - * true:
    + * true: + * + *
      *
    1. codesource must not be null.
    2. *
    3. If codesource has a certificate list, all of it's * certificates must be present in the certificate list of this * code source.
    4. *
    5. If this object does not have a null location, then - * the following addtional tests must be passed.
        + * the following addtional tests must be passed. + * + *
          *
        1. codesource must not have a null * location.
        2. *
        3. codesource's location must be equal to this object's - * location, or
            + * location, or + *
              *
            • codesource's location protocol, port, and ref (aka, * anchor) must equal this objects
            • *
            • codesource's location host must imply this object's @@ -183,19 +188,21 @@ * location file must start with this object's location file * with the '/' character appended to it.
            • *
            - *
        + *
    6. *
    * *

    For example, each of these locations imply the location - * "http://java.sun.com/classes/foo.jar":