<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>coffeecoders.de &#187; tools</title>
	<atom:link href="http://coffeecoders.de/tag/tools/feed/" rel="self" type="application/rss+xml" />
	<link>http://coffeecoders.de</link>
	<description>professional devs at work</description>
	<lastBuildDate>Tue, 13 Sep 2011 16:34:02 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Convert a JAVA keystore from PKCS12 to JKS</title>
		<link>http://coffeecoders.de/2011/03/convert-a-java-keystore-from-pkcs12-to-jks/</link>
		<comments>http://coffeecoders.de/2011/03/convert-a-java-keystore-from-pkcs12-to-jks/#comments</comments>
		<pubDate>Fri, 11 Mar 2011 09:28:17 +0000</pubDate>
		<dc:creator>stevie</dc:creator>
				<category><![CDATA[common]]></category>
		<category><![CDATA[cheat sheet]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[java]]></category>
		<category><![CDATA[keytool]]></category>
		<category><![CDATA[tools]]></category>

		<guid isPermaLink="false">http://coffeecoders.de/?p=272</guid>
		<description><![CDATA[Although it&#8217;s in the man page of the keytool I think it&#8217;s worth mentioning. JKS has a big advantage over the PKCS12-format: It knows trusted certificates. This way you can use certificates, normally untrusted by your application because the Certificate &#8230; <a href="http://coffeecoders.de/2011/03/convert-a-java-keystore-from-pkcs12-to-jks/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Although it&#8217;s in the man page of the <strong>keytool</strong> I think it&#8217;s worth mentioning.</p>
<p>JKS has a big advantage over the PKCS12-format: It knows trusted certificates. This way you can use certificates, normally untrusted by your application because the Certificate Authority (CA) is not trusted within the default keystore.<br />
<span id="more-272"></span><br />
To convert your PKCS12-keystore to a JKS-type use the following line:</p>

<div class="wp_codebox_msgheader"><span class="right"><sup><a href="http://www.ericbess.com/ericblog/2008/03/03/wp-codebox/#examples" target="_blank" title="WP-CodeBox HowTo?"><span style="color: #99cc00">?</span></a></sup></span><span class="left"><a href="javascript:;" onclick="javascript:showCodeTxt('p272code2'); return false;">View Code</a> BASH</span><div class="codebox_clear"></div></div><div class="wp_codebox"><table><tr id="p2722"><td class="line_numbers"><pre>1
</pre></td><td class="code" id="p272code2"><pre class="bash" style="font-family:monospace;"> keytool <span style="color: #660033;">-importkeystore</span> <span style="color: #660033;">-srckeystore</span> oldkeystore.pkcs <span style="color: #660033;">-srcstoretype</span> pkcs12 <span style="color: #660033;">-srcstorepass</span> oldsecret <span style="color: #660033;">-destkeystore</span> newkeystore.jks <span style="color: #660033;">-deststoretype</span> jks <span style="color: #660033;">-deststorepass</span> newsecret</pre></td></tr></table></div>

<p>After execution of this line you will have a 2nd keystore in the directory named &#8220;newkeystore.jks&#8221;.</p>
 <p><a href="http://coffeecoders.de/?flattrss_redirect&amp;id=272&amp;md5=c35995ff71fd248b05cecb3f61a91066" title="Flattr" target="_blank"><img src="http://coffeecoders.de/wp-content/plugins/flattr/img/flattr-badge-large.png" alt="flattr this!"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://coffeecoders.de/2011/03/convert-a-java-keystore-from-pkcs12-to-jks/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Subversion and TortoiseSVN tips and tricks</title>
		<link>http://coffeecoders.de/2009/02/subversion-and-tortoisesvn-tips-and-tricks/</link>
		<comments>http://coffeecoders.de/2009/02/subversion-and-tortoisesvn-tips-and-tricks/#comments</comments>
		<pubDate>Sat, 14 Feb 2009 01:18:29 +0000</pubDate>
		<dc:creator>stevie</dc:creator>
				<category><![CDATA[common]]></category>
		<category><![CDATA[coding]]></category>
		<category><![CDATA[daily tasks]]></category>
		<category><![CDATA[svn]]></category>
		<category><![CDATA[tools]]></category>

		<guid isPermaLink="false">http://coffeecoders.de/?p=145</guid>
		<description><![CDATA[David Vidmar has collected a very interesting list of commands, tricks and tips which will certainly help you dealing with very common problems using TortoiseSVN or any other subversion client. Have a good look a the compiled list and be &#8230; <a href="http://coffeecoders.de/2009/02/subversion-and-tortoisesvn-tips-and-tricks/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><span class="small"> David Vidmar has collected a very interesting list of commands, tricks and tips which will certainly help you dealing with very common problems using <a href="http://tortoisesvn.tigris.org/">TortoiseSVN</a> or any other subversion client.</span></p>
<p><span class="small">Have a good look a the compiled list and be sure to bookmark it for the next crisis with TSVN&#8230;<br />
</span></p>
<p>Link: <a href="http://vidmar.net/weblog/archive/2007/12/11/subversion-and-tortoisesvn-tips-and-tricks.aspx">Subversion and TortoiseSVN tips and tricks</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://coffeecoders.de/2009/02/subversion-and-tortoisesvn-tips-and-tricks/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

