1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218
| import java.security.*; import java.security.spec.InvalidKeySpecException; import java.security.spec.PKCS8EncodedKeySpec; import java.security.spec.X509EncodedKeySpec; import java.util.HashMap; import java.util.Map;
import javax.crypto.Cipher; import javax.crypto.NoSuchPaddingException;
import org.apache.commons.codec.binary.Base64;
public class SecurityUtils {
static final String RSA_KEY_PUBLIC = "public";
static final String RSA_KEY_PRIVATE = "private";
private SecurityUtils() {}
public static CryptographicProcessor getRSAPublicKeyProcessor(String rSAPublicKey) throws Exception { return new RSAPublicKeyProcessor(rSAPublicKey); }
public static CryptographicProcessor getRSAPublicKeyProcessor(byte[] rSAPublicKeyBytes) throws Exception { return new RSAPublicKeyProcessor(rSAPublicKeyBytes); }
public static CryptographicProcessor getRSAPrivateKeyProcessor(String rSAPrivateKey) throws Exception { return new RSAPrivateKeyProcessor(rSAPrivateKey); }
public static CryptographicProcessor getRSAPrivateKeyProcessor(byte[] rSAPrivateKeyBytes) throws Exception { return new RSAPrivateKeyProcessor(rSAPrivateKeyBytes); }
public static Map<String, String> generateRSAKeyPair() throws NoSuchAlgorithmException { return generateRSAKeyPair(512); }
public static Map<String, String> generateRSAKeyPair(int keySize) throws NoSuchAlgorithmException { Map<String, String> keyPairMap = new HashMap<>(); KeyPair keyPair = getKeyPair(keySize); keyPairMap.put(SecurityUtils.RSA_KEY_PUBLIC, Base64.encodeBase64String(keyPair.getPrivate().getEncoded())); keyPairMap.put(SecurityUtils.RSA_KEY_PRIVATE, Base64.encodeBase64String(keyPair.getPrivate().getEncoded())); return keyPairMap; }
public static Map<String, byte[]> generateRSAKeyBytePair(int keySize) throws NoSuchAlgorithmException { Map<String, byte[]> keyPairMap = new HashMap<>(); KeyPair keyPair = getKeyPair(keySize); keyPairMap.put(SecurityUtils.RSA_KEY_PUBLIC, keyPair.getPublic().getEncoded()); keyPairMap.put(SecurityUtils.RSA_KEY_PRIVATE, keyPair.getPrivate().getEncoded()); return keyPairMap; }
private static KeyPair getKeyPair(int keySize) throws NoSuchAlgorithmException { KeyPairGenerator keyPairGenerator = KeyPairGenerator.getInstance("RSA"); keyPairGenerator.initialize(keySize); return keyPairGenerator.generateKeyPair(); }
static class RSAPublicKeyProcessor implements CryptographicProcessor {
private X509EncodedKeySpec x509EncodedKeySpec; private KeyFactory keyFactory; private PublicKey publicKey; private Cipher cipher;
private RSAPublicKeyProcessor(String rSAPublicKey) throws Exception { this(Base64.decodeBase64(rSAPublicKey)); }
private RSAPublicKeyProcessor(byte[] rSAPublicKeyBytes) throws Exception { this.x509EncodedKeySpec = new X509EncodedKeySpec(rSAPublicKeyBytes); this.keyFactory = KeyFactory.getInstance("RSA"); this.cipher = Cipher.getInstance("RSA"); this.publicKey = keyFactory.generatePublic(x509EncodedKeySpec); }
@Override public String encode(String str) throws Exception { byte[] result = encode(str.getBytes()); return Base64.encodeBase64String(result); }
@Override public byte[] encode(byte[] strs) throws Exception { cipher.init(Cipher.ENCRYPT_MODE, publicKey); return cipher.doFinal(strs); }
@Override public String decode(String str) throws Exception { byte[] result = decode(Base64.decodeBase64(str)); return new String(result); }
@Override public byte[] decode(byte[] strs) throws Exception { cipher.init(Cipher.DECRYPT_MODE, publicKey); return cipher.doFinal(strs); } }
static class RSAPrivateKeyProcessor implements CryptographicProcessor {
private PKCS8EncodedKeySpec pkcs8EncodedKeySpec; private KeyFactory keyFactory; private PrivateKey privateKey; private Cipher cipher;
private RSAPrivateKeyProcessor(String rSAPrivate) throws NoSuchAlgorithmException, NoSuchPaddingException, InvalidKeySpecException { this(Base64.decodeBase64(rSAPrivate)); }
private RSAPrivateKeyProcessor(byte[] rSAPrivateBytes) throws NoSuchAlgorithmException, NoSuchPaddingException, InvalidKeySpecException { this.pkcs8EncodedKeySpec = new PKCS8EncodedKeySpec(rSAPrivateBytes); this.keyFactory = KeyFactory.getInstance("RSA"); this.privateKey = keyFactory.generatePrivate(pkcs8EncodedKeySpec); this.cipher = Cipher.getInstance("RSA"); }
@Override public byte[] encode(byte[] strs) throws Exception { cipher.init(Cipher.ENCRYPT_MODE, privateKey); byte[] result = cipher.doFinal(strs); return result; }
@Override public String encode(String str) throws Exception { byte[] result = encode(str.getBytes()); return Base64.encodeBase64String(result); }
@Override public byte[] decode(byte[] strs) throws Exception { cipher.init(Cipher.DECRYPT_MODE, privateKey); byte[] result = cipher.doFinal(strs); return result; }
@Override public String decode(String str) throws Exception { byte[] result = decode(Base64.decodeBase64(str)); return new String(result); } } }
|