Whitespace

git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@6758 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Dave Hoover
2012-01-03 18:44:49 +00:00
parent db78d695a6
commit 750e2fdac5
@@ -51,7 +51,7 @@ public class SecureUtil
/**
* Creates our AES cipher.
*/
public static Cipher getAESCipher(int mode, byte[] key)
public static Cipher getAESCipher (int mode, byte[] key)
{
try {
Cipher cipher = Cipher.getInstance("AES/CBC/PKCS5Padding");
@@ -67,7 +67,7 @@ public class SecureUtil
/**
* Creates our RSA cipher.
*/
public static Cipher getRSACipher(PrivateKey key)
public static Cipher getRSACipher (PrivateKey key)
{
return getRSACipher(Cipher.DECRYPT_MODE, key);
}
@@ -75,7 +75,7 @@ public class SecureUtil
/**
* Creates our RSA cipher.
*/
public static Cipher getRSACipher(PublicKey key)
public static Cipher getRSACipher (PublicKey key)
{
return getRSACipher(Cipher.ENCRYPT_MODE, key);
}
@@ -83,7 +83,7 @@ public class SecureUtil
/**
* Creates our RSA cipher.
*/
public static Cipher getRSACipher(int mode, Key key)
public static Cipher getRSACipher (int mode, Key key)
{
try {
Cipher cipher = Cipher.getInstance("RSA");