If you're you're referring to this commit: https://github.com/bitcoinj/bitcoinj/commit/2992cc16ff2ccd0c42b68469e90d0cc38a1e54d9 it does not fix this hack org.bitcoinj.crypto.DRMWorkaround.maybeDisableExportControls()
This hack attempts to lift export-restricted encryption, which only works in older JVMs. The most recent JVM 1.8 makes this static field final so it can't be patched. The real fix requires either: - running an old JVM 1.8 - patching your JVM security crypto.policy=unlimited - or using JVM 1.9+ https://github.com/bitcoinj/bitcoinj/issues/1481 On Thu, Nov 1, 2018 at 5:27 AM Andreas Schildbach <[email protected]> wrote: > For the archive: this is now fixed on master, by specifying source > encodings. > > -- > You received this message because you are subscribed to the Google Groups > "bitcoinj" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to [email protected]. > For more options, visit https://groups.google.com/d/optout. > -- You received this message because you are subscribed to the Google Groups "bitcoinj" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/d/optout.
