File tree Expand file tree Collapse file tree 3 files changed +5
-5
lines changed
prov/src/main/jdk25/org/bouncycastle/jcajce/provider/kdf Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 11org.gradle.jvmargs =-Xmx2g
2- version =1.83-SNAPSHOT
2+ version =1.83
33maxVersion =1.84
44org.gradle.java.installations.auto-detect =false
55org.gradle.java.installations.auto-download =false
Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ public Mappings()
1616
1717 public void configure (ConfigurableProvider provider )
1818 {
19- provider .addAlgorithm ("KDF.SCRYPT" , PREFIX + "SCryptSpi $ScryptWithUTF8" );
19+ provider .addAlgorithm ("KDF.SCRYPT" , PREFIX + "ScryptSpi $ScryptWithUTF8" );
2020 }
2121 }
2222}
Original file line number Diff line number Diff line change 1717/**
1818 * Example KDFSpi that delegates to Bouncy Castle’s SCrypt implementation.
1919 */
20- class SCryptSpi
20+ class ScryptSpi
2121 extends KDFSpi
2222{
23- protected SCryptSpi (KDFParameters kdfParameters )
23+ protected ScryptSpi (KDFParameters kdfParameters )
2424 throws InvalidAlgorithmParameterException
2525 {
2626 super (kdfParameters );
@@ -85,7 +85,7 @@ protected byte[] engineDeriveData(AlgorithmParameterSpec derivationSpec)
8585 }
8686
8787 public static class ScryptWithUTF8
88- extends SCryptSpi
88+ extends ScryptSpi
8989 {
9090 public ScryptWithUTF8 () throws InvalidAlgorithmParameterException
9191 {
You can’t perform that action at this time.
0 commit comments