use StringBuilder correctly

This is not java 7 related, but should be included here:

Code like this

 crypto = new StringBuilder();
 crypto.append(line + "\n");

defeats the purpose of using StringBuilder, because String concatenation using + will internally be accomplished by using another StringBuilder (see Javadoc).

This should also be added to the coding guidelines (or did we write these for Onionoo only?).