File tree Expand file tree Collapse file tree
jdk1.1/org/bouncycastle/jce/provider
jdk1.4/org/bouncycastle/jce/provider Expand file tree Collapse file tree Original file line number Diff line number Diff line change 530530< li > Phillip Schichtel <https://github.com/pschichtel> - initial code for specifying wrapping algorithm with PGP PBE encryption method, forcing of session key usage.</ li >
531531< li > Alexander Dippel <https://github.com/adippel> - corrections to prevent NPEs on chunked encoding of EST responses.</ li >
532532< li > Johann N. Löfflmann <https://github.com/jonelo> - fix to "too small" buffer issue in Blake2sp.</ li >
533- < li > scott-xu <https://github.com/scott-xu> - message fix in OpenSSHPublicKeyUtil</ li >
533+ < li > Scott Xu <https://github.com/scott-xu> - message fix in OpenSSHPublicKeyUtil</ li >
534+ < li > Scott Arciszewski <https://github/scottarc> - correction to ant scripts to ensure UTF8 support.</ li >
535+ < li > GitHub Security team - identification of the X509LDAPCertStoreSpi wildcard bug (see CVE-2023-33201).</ li >
534536</ ul >
535537</ body >
536538</ html >
Original file line number Diff line number Diff line change 4747 <fileset dir =" pkix/src/main/java" includes =" **/*.java" />
4848 <fileset dir =" pkix/src/main/jdk1.5" includes =" **/*.java" />
4949 <fileset dir =" pkix/src/main/javadoc" includes =" **/*.html" />
50- <fileset dir =" pkix/src/main/java " includes =" **/*.properties" />
50+ <fileset dir =" pkix/src/main/resources " includes =" **/*.properties" />
5151 <fileset dir =" pkix/src/test/java" includes =" **/*.java" />
5252 <fileset dir =" pkix/src/test/javadoc" includes =" **/*.html" />
5353 <fileset dir =" pkix/src/test/resources" includes =" **/*.*" />
Original file line number Diff line number Diff line change @@ -164,7 +164,7 @@ subprojects {
164164 targetCompatibility = 1.8
165165 }
166166
167- version = ' 1.73 '
167+ version = ' 1.74 '
168168
169169 task testFull(type :Test ) {
170170 systemProperties = [
Original file line number Diff line number Diff line change 4343public final class BouncyCastleProvider extends Provider
4444 implements ConfigurableProvider
4545{
46- private static String info = "BouncyCastle Security Provider v1.73 " ;
46+ private static String info = "BouncyCastle Security Provider v1.74 " ;
4747
4848 public static final String PROVIDER_NAME = "BC" ;
4949
@@ -118,7 +118,7 @@ public final class BouncyCastleProvider extends Provider
118118 */
119119 public BouncyCastleProvider ()
120120 {
121- super (PROVIDER_NAME , 1.73 , info );
121+ super (PROVIDER_NAME , 1.74 , info );
122122
123123 setup ();
124124 }
Original file line number Diff line number Diff line change 4949public final class BouncyCastleProvider extends Provider
5050 implements ConfigurableProvider
5151{
52- private static String info = "BouncyCastle Security Provider v1.73 " ;
52+ private static String info = "BouncyCastle Security Provider v1.74 " ;
5353
5454 public static final String PROVIDER_NAME = "BC" ;
5555
@@ -133,7 +133,7 @@ public final class BouncyCastleProvider extends Provider
133133 */
134134 public BouncyCastleProvider ()
135135 {
136- super (PROVIDER_NAME , 1.73 , info );
136+ super (PROVIDER_NAME , 1.74 , info );
137137
138138 AccessController .doPrivileged (new PrivilegedAction ()
139139 {
You can’t perform that action at this time.
0 commit comments