<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Recent changes to Home</title><link>https://sourceforge.net/p/commonscrypt/wiki/Home/</link><description>Recent changes to Home</description><atom:link href="https://sourceforge.net/p/commonscrypt/wiki/Home/feed" rel="self"/><language>en</language><lastBuildDate>Fri, 10 Oct 2014 21:12:09 -0000</lastBuildDate><atom:link href="https://sourceforge.net/p/commonscrypt/wiki/Home/feed" rel="self" type="application/rss+xml"/><item><title>Home modified by Michael Bock</title><link>https://sourceforge.net/p/commonscrypt/wiki/Home/</link><description>&lt;div class="markdown_content"&gt;&lt;pre&gt;--- v8
+++ v9
@@ -35,7 +35,7 @@
     &amp;lt;dependency&amp;gt;
         &amp;lt;groupId&amp;gt;de.mibos&amp;lt;/groupId&amp;gt;
         &amp;lt;artifactId&amp;gt;commons-crypt&amp;lt;/artifactId&amp;gt;
-        &amp;lt;version&amp;gt;1.3&amp;lt;/version&amp;gt;
+        &amp;lt;version&amp;gt;1.4&amp;lt;/version&amp;gt;
     &amp;lt;/dependency&amp;gt;

 The javadoc documentation is here: http://commonscrypt.sourceforge.net/apidocs/index.html
&lt;/pre&gt;
&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Michael Bock</dc:creator><pubDate>Fri, 10 Oct 2014 21:12:09 -0000</pubDate><guid>https://sourceforge.net431b0667d0e16f8c13fae9187c55fc09dbaa455a</guid></item><item><title>Home modified by Michael Bock</title><link>https://sourceforge.net/p/commonscrypt/wiki/Home/</link><description>&lt;div class="markdown_content"&gt;&lt;pre&gt;--- v7
+++ v8
@@ -35,7 +35,7 @@
     &amp;lt;dependency&amp;gt;
         &amp;lt;groupId&amp;gt;de.mibos&amp;lt;/groupId&amp;gt;
         &amp;lt;artifactId&amp;gt;commons-crypt&amp;lt;/artifactId&amp;gt;
-        &amp;lt;version&amp;gt;1.2&amp;lt;/version&amp;gt;
+        &amp;lt;version&amp;gt;1.3&amp;lt;/version&amp;gt;
     &amp;lt;/dependency&amp;gt;

 The javadoc documentation is here: http://commonscrypt.sourceforge.net/apidocs/index.html
&lt;/pre&gt;
&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Michael Bock</dc:creator><pubDate>Sat, 20 Sep 2014 22:18:05 -0000</pubDate><guid>https://sourceforge.netf11bbca669cdeed3886e625b42311982a5706143</guid></item><item><title>Home modified by Michael Bock</title><link>https://sourceforge.net/p/commonscrypt/wiki/Home/</link><description>&lt;div class="markdown_content"&gt;&lt;pre&gt;--- v6
+++ v7
@@ -39,3 +39,8 @@
     &amp;lt;/dependency&amp;gt;

 The javadoc documentation is here: http://commonscrypt.sourceforge.net/apidocs/index.html
+
+Required Java version
+-----
+
+Java 7 or later
&lt;/pre&gt;
&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Michael Bock</dc:creator><pubDate>Fri, 19 Sep 2014 18:27:20 -0000</pubDate><guid>https://sourceforge.neteff7e31161990fd617d237e3cd2e430536c9cf79</guid></item><item><title>Home modified by Michael Bock</title><link>https://sourceforge.net/p/commonscrypt/wiki/Home/</link><description>&lt;div class="markdown_content"&gt;&lt;pre&gt;--- v5
+++ v6
@@ -11,11 +11,11 @@
 Code sample file decryption
 -----

-    public static void main2(String[] args) throws IOException {
+    public static void main(String[] args) throws IOException {
         FileInputStream cipherInput = new FileInputStream(args[0]);
         FileOutputStream plainOutput = new FileOutputStream(args[1]);
         String password = args[2];
-        long outputLength = Crypt.AES256.decrypt(cipherInput, plainOutput, password);
+        long outputLength = Crypt.Blowfish256.decrypt(cipherInput, plainOutput, password);
     }

 Code sample with byte arrays
&lt;/pre&gt;
&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Michael Bock</dc:creator><pubDate>Sat, 13 Sep 2014 21:31:31 -0000</pubDate><guid>https://sourceforge.netd8df6d0bfca854934509b781bc138d40d5990dbe</guid></item><item><title>Home modified by Michael Bock</title><link>https://sourceforge.net/p/commonscrypt/wiki/Home/</link><description>&lt;div class="markdown_content"&gt;&lt;pre&gt;--- v4
+++ v5
@@ -2,20 +2,20 @@
 -----

     public static void main(String[] args) throws IOException {
-   FileInputStream plainInput = new FileInputStream(args[0]);
-   FileOutputStream cipherOutput = new FileOutputStream(args[1]);
-   String password = args[2];
-   long outputLength = Crypt.AES256.encrypt(plainInput, cipherOutput, password);
+        FileInputStream plainInput = new FileInputStream(args[0]);
+        FileOutputStream cipherOutput = new FileOutputStream(args[1]);
+        String password = args[2];
+        long outputLength = Crypt.AES256.encrypt(plainInput, cipherOutput, password);
     }

 Code sample file decryption
 -----

     public static void main2(String[] args) throws IOException {
-   FileInputStream cipherInput = new FileInputStream(args[0]);
-   FileOutputStream plainOutput = new FileOutputStream(args[1]);
-   String password = args[2];
-   long outputLength = Crypt.AES256.decrypt(cipherInput, plainOutput, password);
+        FileInputStream cipherInput = new FileInputStream(args[0]);
+        FileOutputStream plainOutput = new FileOutputStream(args[1]);
+        String password = args[2];
+        long outputLength = Crypt.AES256.decrypt(cipherInput, plainOutput, password);
     }

 Code sample with byte arrays
&lt;/pre&gt;
&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Michael Bock</dc:creator><pubDate>Sat, 13 Sep 2014 18:04:53 -0000</pubDate><guid>https://sourceforge.net44428542748b2303ad0ba8fcb1e8fb58825296f3</guid></item><item><title>Home modified by Michael Bock</title><link>https://sourceforge.net/p/commonscrypt/wiki/Home/</link><description>&lt;div class="markdown_content"&gt;&lt;pre&gt;--- v3
+++ v4
@@ -1,3 +1,34 @@
+Code sample file encryption
+-----
+
+    public static void main(String[] args) throws IOException {
+   FileInputStream plainInput = new FileInputStream(args[0]);
+   FileOutputStream cipherOutput = new FileOutputStream(args[1]);
+   String password = args[2];
+   long outputLength = Crypt.AES256.encrypt(plainInput, cipherOutput, password);
+    }
+
+Code sample file decryption
+-----
+
+    public static void main2(String[] args) throws IOException {
+   FileInputStream cipherInput = new FileInputStream(args[0]);
+   FileOutputStream plainOutput = new FileOutputStream(args[1]);
+   String password = args[2];
+   long outputLength = Crypt.AES256.decrypt(cipherInput, plainOutput, password);
+    }
+
+Code sample with byte arrays
+-----
+
+    byte[] plainText = { ... };
+    byte[] cipherText = Crypt.AES256.encrypt(plainText, "password");
+    byte[] plainTextAgain = Crypt.AES256.decrypt(cipherText, "password");
+
+
+Usage
+-----
+
 commons-crypt is on maven central.
 So the recommended way to use it, is to add a dependency to your pom.xml:

&lt;/pre&gt;
&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Michael Bock</dc:creator><pubDate>Sat, 13 Sep 2014 18:02:56 -0000</pubDate><guid>https://sourceforge.net511b65026bc96648b0180973285ac994c02abee5</guid></item><item><title>Home modified by Michael Bock</title><link>https://sourceforge.net/p/commonscrypt/wiki/Home/</link><description>&lt;div class="markdown_content"&gt;&lt;pre&gt;--- v2
+++ v3
@@ -1,9 +1,10 @@
 commons-crypt is on maven central.
 So the recommended way to use it, is to add a dependency to your pom.xml:
-

     &amp;lt;dependency&amp;gt;
         &amp;lt;groupId&amp;gt;de.mibos&amp;lt;/groupId&amp;gt;
         &amp;lt;artifactId&amp;gt;commons-crypt&amp;lt;/artifactId&amp;gt;
         &amp;lt;version&amp;gt;1.2&amp;lt;/version&amp;gt;
     &amp;lt;/dependency&amp;gt;
+
+The javadoc documentation is here: http://commonscrypt.sourceforge.net/apidocs/index.html
&lt;/pre&gt;
&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Michael Bock</dc:creator><pubDate>Sat, 13 Sep 2014 14:11:29 -0000</pubDate><guid>https://sourceforge.net5409b5d4b3ad1c18e39d15d03473a677b6bab276</guid></item><item><title>Home modified by Michael Bock</title><link>https://sourceforge.net/p/commonscrypt/wiki/Home/</link><description>&lt;div class="markdown_content"&gt;&lt;pre&gt;--- v1
+++ v2
@@ -1,8 +1,9 @@
-Welcome to your wiki!
+commons-crypt is on maven central.
+So the recommended way to use it, is to add a dependency to your pom.xml:

-This is the default page, edit it as you see fit. To add a new page simply reference it within brackets, e.g.: [SamplePage].

-The wiki uses [Markdown](/p/commonscrypt/wiki/markdown_syntax/) syntax.
-
-[[members limit=20]]
-[[download_button]]
+    &amp;lt;dependency&amp;gt;
+        &amp;lt;groupId&amp;gt;de.mibos&amp;lt;/groupId&amp;gt;
+        &amp;lt;artifactId&amp;gt;commons-crypt&amp;lt;/artifactId&amp;gt;
+        &amp;lt;version&amp;gt;1.2&amp;lt;/version&amp;gt;
+    &amp;lt;/dependency&amp;gt;
&lt;/pre&gt;
&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Michael Bock</dc:creator><pubDate>Sat, 13 Sep 2014 13:46:23 -0000</pubDate><guid>https://sourceforge.net0f0258b4415896171a1f6cbf6515a0095f730ecc</guid></item><item><title>Home modified by Michael Bock</title><link>https://sourceforge.net/p/commonscrypt/wiki/Home/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;Welcome to your wiki!&lt;/p&gt;
&lt;p&gt;This is the default page, edit it as you see fit. To add a new page simply reference it within brackets, e.g.: &lt;span&gt;[SamplePage]&lt;/span&gt;.&lt;/p&gt;
&lt;p&gt;The wiki uses &lt;a class="" href="/p/commonscrypt/wiki/markdown_syntax"&gt;Markdown&lt;/a&gt; syntax.&lt;/p&gt;
&lt;p&gt;&lt;h6&gt;Project Members:&lt;/h6&gt;
&lt;ul class="md-users-list"&gt;
&lt;li&gt;&lt;a href="/u/michaels-apps"&gt;Michael Bock&lt;/a&gt; (admin)&lt;/li&gt;
&lt;/ul&gt;&lt;br /&gt;
&lt;/p&gt;&lt;p&gt;&lt;span class="download-button-540cca8e04161f7b643c5cdc" style="margin-bottom: 1em; display: block;"&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Michael Bock</dc:creator><pubDate>Sun, 07 Sep 2014 21:13:50 -0000</pubDate><guid>https://sourceforge.net1f772a9d2281952c3b8404fbdfb1be5b276cfd2c</guid></item></channel></rss>