Skip to content

Commit 568a493

Browse files
committed
dropped SNAPSHOT
minor refactor.
1 parent 8ede5c2 commit 568a493

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
org.gradle.jvmargs=-Xmx2g
2-
version=1.83-SNAPSHOT
2+
version=1.83
33
maxVersion=1.84
44
org.gradle.java.installations.auto-detect=false
55
org.gradle.java.installations.auto-download=false

prov/src/main/jdk25/org/bouncycastle/jcajce/provider/kdf/SCRYPT.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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
}

prov/src/main/jdk25/org/bouncycastle/jcajce/provider/kdf/scrypt/SCryptSpi.java renamed to prov/src/main/jdk25/org/bouncycastle/jcajce/provider/kdf/scrypt/ScryptSpi.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,10 @@
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
{

0 commit comments

Comments
 (0)