-
Notifications
You must be signed in to change notification settings - Fork 23
Use ThreadLocal caching for ExtendedRandom PRNG contexts #1255
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
+129
−5
Merged
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
67 changes: 67 additions & 0 deletions
67
src/test/java/ibm/jceplus/jmh/RandomNewInstanceBenchmark.java
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,67 @@ | ||
| /* | ||
| * Copyright IBM Corp. 2026, 2026 | ||
| * | ||
| * This code is free software; you can redistribute it and/or modify it | ||
| * under the terms provided by IBM in the LICENSE file that accompanied | ||
| * this code, including the "Classpath" Exception described therein. | ||
| */ | ||
|
|
||
| package ibm.jceplus.jmh; | ||
|
|
||
| import java.security.SecureRandom; | ||
| import java.util.concurrent.TimeUnit; | ||
| import org.openjdk.jmh.annotations.Benchmark; | ||
| import org.openjdk.jmh.annotations.BenchmarkMode; | ||
| import org.openjdk.jmh.annotations.Measurement; | ||
| import org.openjdk.jmh.annotations.Mode; | ||
| import org.openjdk.jmh.annotations.OutputTimeUnit; | ||
| import org.openjdk.jmh.annotations.Param; | ||
| import org.openjdk.jmh.annotations.Scope; | ||
| import org.openjdk.jmh.annotations.Setup; | ||
| import org.openjdk.jmh.annotations.State; | ||
| import org.openjdk.jmh.annotations.Warmup; | ||
| import org.openjdk.jmh.runner.Runner; | ||
| import org.openjdk.jmh.runner.RunnerException; | ||
| import org.openjdk.jmh.runner.options.Options; | ||
|
|
||
| @BenchmarkMode(Mode.Throughput) | ||
| @OutputTimeUnit(TimeUnit.SECONDS) | ||
| @State(Scope.Benchmark) | ||
| @Warmup(iterations = 3, time = 10, timeUnit = TimeUnit.SECONDS) | ||
| @Measurement(iterations = 4, time = 30, timeUnit = TimeUnit.SECONDS) | ||
| public class RandomNewInstanceBenchmark extends JMHBase { | ||
|
jasonkatonica marked this conversation as resolved.
|
||
|
|
||
| @Param({"16", "2048", "32768"}) | ||
| private int payloadSize; | ||
|
|
||
| private byte[] payload; | ||
|
|
||
| private String algorithm; | ||
| private String provider; | ||
|
|
||
| @Param({"SHA256DRBG|OpenJCEPlus", "SHA512DRBG|OpenJCEPlus", "SHA1PRNG|SUN", "DRBG|SUN"}) | ||
| private String randomToTest; | ||
|
|
||
| @Setup | ||
| public void setup() throws Exception { | ||
| String[] algAndProvider = randomToTest.split("\\|"); | ||
| algorithm = algAndProvider[0]; | ||
| provider = algAndProvider[1]; | ||
| super.setup(provider); | ||
| payload = new byte[payloadSize]; | ||
| } | ||
|
|
||
| @Benchmark | ||
| public byte[] runSecureRandom() throws Exception { | ||
| SecureRandom random = SecureRandom.getInstance(algorithm, provider); | ||
| random.nextBytes(payload); | ||
| return payload; | ||
| } | ||
|
|
||
| public static void main(String[] args) throws RunnerException { | ||
| String testSimpleName = RandomNewInstanceBenchmark.class.getSimpleName(); | ||
| Options opt = optionsBuild(testSimpleName, testSimpleName); | ||
|
|
||
| new Runner(opt).run(); | ||
| } | ||
| } | ||
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.