From 750e2fdac55b01c98b89cb6f69734dc41ddda41b Mon Sep 17 00:00:00 2001 From: Dave Hoover Date: Tue, 3 Jan 2012 18:44:49 +0000 Subject: [PATCH] Whitespace git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@6758 542714f4-19e9-0310-aa3c-eee0fc999fb1 --- .../java/com/threerings/presents/util/SecureUtil.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/main/java/com/threerings/presents/util/SecureUtil.java b/src/main/java/com/threerings/presents/util/SecureUtil.java index 11c288b5f..01f99e9bd 100644 --- a/src/main/java/com/threerings/presents/util/SecureUtil.java +++ b/src/main/java/com/threerings/presents/util/SecureUtil.java @@ -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");