Message10754

Author dclayton
Recipients dclayton
Date 2016-02-18.02:24:46
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1455762287.41.0.619140829105.issue2469@psf.upfronthosting.co.za>
In-reply-to
Content
Note that there are workarounds for the end user:

1. You can add the proper BC jar to your JRE (http://stackoverflow.com/questions/13721579/jce-cannot-authenticate-the-provider-bc-in-java-swing-application).

2. You can put a relative path to the BC jar in the manifest for the jython jar:

Class-Path: Path/to/your/BC.jar

and run this before any other code:

    from org.bouncycastle.jce.provider import BouncyCastleProvider
    Security.addProvider(BouncyCastleProvider())
History
Date User Action Args
2016-02-18 02:24:47dclaytonsetmessageid: <1455762287.41.0.619140829105.issue2469@psf.upfronthosting.co.za>
2016-02-18 02:24:47dclaytonsetrecipients: + dclayton
2016-02-18 02:24:47dclaytonlinkissue2469 messages
2016-02-18 02:24:47dclaytoncreate