<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: java.lang.SecurityException: JCE cannot authenticate the provider BC</title>
	<atom:link href="http://www.randombugs.com/java/javalangsecurityexception-jce-authenticate-provider-bc.html/feed" rel="self" type="application/rss+xml" />
	<link>http://www.randombugs.com/java/javalangsecurityexception-jce-authenticate-provider-bc.html</link>
	<description>Just another Bastard Operator From Hell. Everything from *nix to programming</description>
	<lastBuildDate>Fri, 03 Feb 2012 05:15:48 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
	<item>
		<title>By: admin</title>
		<link>http://www.randombugs.com/java/javalangsecurityexception-jce-authenticate-provider-bc.html/comment-page-1#comment-2982</link>
		<dc:creator>admin</dc:creator>
		<pubDate>Tue, 29 Nov 2011 07:38:50 +0000</pubDate>
		<guid isPermaLink="false">http://www.randombugs.com/?p=577#comment-2982</guid>
		<description>Yes is true. But I didn&#039;t know about that at that moment or the feature was not available :)

Regards</description>
		<content:encoded><![CDATA[<p>Yes is true. But I didn&#8217;t know about that at that moment or the feature was not available <img src='http://www.randombugs.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Regards</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Albert Ciffone</title>
		<link>http://www.randombugs.com/java/javalangsecurityexception-jce-authenticate-provider-bc.html/comment-page-1#comment-2971</link>
		<dc:creator>Albert Ciffone</dc:creator>
		<pubDate>Fri, 25 Nov 2011 07:24:21 +0000</pubDate>
		<guid isPermaLink="false">http://www.randombugs.com/?p=577#comment-2971</guid>
		<description>Hi,

It&#039;s not necessary that you installs the provider on the JVM. If you put the BC provider before the SunJCE provider in the list, the BC works fine. You can do this programatically doing:

Security.insertProviderAt(new BouncyCastleProvider(),1);

1 specifies the priority for this provider.

Regards,</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>It&#8217;s not necessary that you installs the provider on the JVM. If you put the BC provider before the SunJCE provider in the list, the BC works fine. You can do this programatically doing:</p>
<p>Security.insertProviderAt(new BouncyCastleProvider(),1);</p>
<p>1 specifies the priority for this provider.</p>
<p>Regards,</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: admin</title>
		<link>http://www.randombugs.com/java/javalangsecurityexception-jce-authenticate-provider-bc.html/comment-page-1#comment-1222</link>
		<dc:creator>admin</dc:creator>
		<pubDate>Sun, 26 Dec 2010 11:45:23 +0000</pubDate>
		<guid isPermaLink="false">http://www.randombugs.com/?p=577#comment-1222</guid>
		<description>Yes ... is much much simple ...</description>
		<content:encoded><![CDATA[<p>Yes &#8230; is much much simple &#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Keith</title>
		<link>http://www.randombugs.com/java/javalangsecurityexception-jce-authenticate-provider-bc.html/comment-page-1#comment-904</link>
		<dc:creator>Keith</dc:creator>
		<pubDate>Thu, 16 Dec 2010 23:19:20 +0000</pubDate>
		<guid isPermaLink="false">http://www.randombugs.com/?p=577#comment-904</guid>
		<description>Hey great post! Thanks for putting this up. One thing that might make it a little simpler would be to skip the jaring. 

first
&lt;code&gt;$ javac SimpleTest.java&lt;/code&gt;

then
&lt;code&gt;$ java SimpleTest.class&lt;/code&gt;</description>
		<content:encoded><![CDATA[<p>Hey great post! Thanks for putting this up. One thing that might make it a little simpler would be to skip the jaring. </p>
<p>first<br />
<code>$ javac SimpleTest.java</code></p>
<p>then<br />
<code>$ java SimpleTest.class</code></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Artur Friesen</title>
		<link>http://www.randombugs.com/java/javalangsecurityexception-jce-authenticate-provider-bc.html/comment-page-1#comment-617</link>
		<dc:creator>Artur Friesen</dc:creator>
		<pubDate>Fri, 16 Jul 2010 15:40:37 +0000</pubDate>
		<guid isPermaLink="false">http://www.randombugs.com/?p=577#comment-617</guid>
		<description>Thank yout for post! It helped me!</description>
		<content:encoded><![CDATA[<p>Thank yout for post! It helped me!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Christoph Schmidt</title>
		<link>http://www.randombugs.com/java/javalangsecurityexception-jce-authenticate-provider-bc.html/comment-page-1#comment-528</link>
		<dc:creator>Christoph Schmidt</dc:creator>
		<pubDate>Fri, 05 Feb 2010 10:08:57 +0000</pubDate>
		<guid isPermaLink="false">http://www.randombugs.com/?p=577#comment-528</guid>
		<description>Thank you very much - this post helped alot! 

I had this problem when invoking BC during an ant run (it worked fine when starting the target through a main() method in the java class).
However, it isn&#039;t really necessary to add the provider to the java.security properties file (found this out because I had a typo in the key and it worked anyways). 

Thanks again!</description>
		<content:encoded><![CDATA[<p>Thank you very much &#8211; this post helped alot! </p>
<p>I had this problem when invoking BC during an ant run (it worked fine when starting the target through a main() method in the java class).<br />
However, it isn&#8217;t really necessary to add the provider to the java.security properties file (found this out because I had a typo in the key and it worked anyways). </p>
<p>Thanks again!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Joshua Hansen</title>
		<link>http://www.randombugs.com/java/javalangsecurityexception-jce-authenticate-provider-bc.html/comment-page-1#comment-497</link>
		<dc:creator>Joshua Hansen</dc:creator>
		<pubDate>Tue, 08 Dec 2009 03:25:34 +0000</pubDate>
		<guid isPermaLink="false">http://www.randombugs.com/?p=577#comment-497</guid>
		<description>This is exactly what I needed!  Thanks!</description>
		<content:encoded><![CDATA[<p>This is exactly what I needed!  Thanks!</p>
]]></content:encoded>
	</item>
</channel>
</rss>

