-
Notifications
You must be signed in to change notification settings - Fork 1.1k
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
Illegal reflective access #669
Comments
Which version of the APIs did you see this with? |
I came across this issue when using sshj version 0.27.0, which uses org.bouncycastle:bcpkix-jdk15on:1.60 and org.bouncycastle:bcprov-jdk15on:1.60. See also hierynomus/sshj#568 Does this answer your question? I think the problem is that the class DRGB.java access an internal API, which might be dangerous
|
They just need to move to a more recent version of bcprov - Java 1.8 (eventually) introduced getInstanceStrong() the BC provider will call that preferentially to get access to the JVM's entropy source. |
I think this needs fix. Probably a Java 12 / 13 issue?
The text was updated successfully, but these errors were encountered: