Encrypt and decrypt string by java
This task use java to encrypt and decrypt string.
Encrypt and decrypt string using AES
- Create Crypto.java as following
- Call encrypt and decrypt methods as following
1 | try { |
2 | String key = UUID.randomUUID().toString().replaceAll("-", ""); |
3 | String src = "Hello world!"; |
4 | String tag1 = Crypto.encrypt(src, key); |
5 | String tag2 = Crypto.decrypt(tag1, key); |
6 | logger.info(src); |
7 | logger.info(tag1); |
8 | logger.info(tag2); |
9 | } catch (Exception e) { |
10 | logger.error("", e); |
11 | } |
try { String key = UUID.randomUUID().toString().replaceAll("-", ""); String src = "Hello world!"; String tag1 = Crypto.encrypt(src, key); String tag2 = Crypto.decrypt(tag1, key); logger.info(src); logger.info(tag1); logger.info(tag2); } catch (Exception e) { logger.error("", e); }
1 | public class Crypto { |
2 | |
3 | public static String encrypt(String value, String key) throws GeneralSecurityException { |
4 | SecretKeySpec sks = new SecretKeySpec(hexStringToByteArray(key), "AES"); |
5 | Cipher cipher = Cipher.getInstance("AES"); |
6 | cipher.init(Cipher.ENCRYPT_MODE, sks, cipher.getParameters()); |
7 | byte[] encrypted = cipher.doFinal(value.getBytes()); |
8 | return byteArrayToHexString(encrypted); |
9 | } |
10 | |
11 | public static String decrypt(String message, String key) throws GeneralSecurityException { |
12 | SecretKeySpec sks = new SecretKeySpec(hexStringToByteArray(key), "AES"); |
13 | Cipher cipher = Cipher.getInstance("AES"); |
14 | cipher.init(Cipher.DECRYPT_MODE, sks); |
15 | byte[] decrypted = cipher.doFinal(hexStringToByteArray(message)); |
16 | return new String(decrypted); |
17 | } |
18 | |
19 | private static String byteArrayToHexString(byte[] b){ |
20 | StringBuffer sb = new StringBuffer(b.length * 2); |
21 | for (int i = 0; i < b.length; i++){ |
22 | int v = b[i] & 0xff; |
23 | if (v < 16) { |
24 | sb.append('0'); |
25 | } |
26 | sb.append(Integer.toHexString(v)); |
27 | } |
28 | return sb.toString().toUpperCase(); |
29 | } |
30 | |
31 | private static byte[] hexStringToByteArray(String s) { |
32 | byte[] b = new byte[s.length() / 2]; |
33 | for (int i = 0; i < b.length; i++){ |
34 | int index = i * 2; |
35 | int v = Integer.parseInt(s.substring(index, index + 2), 16); |
36 | b[i] = (byte)v; |
37 | } |
38 | return b; |
39 | } |
40 | |
41 | } |
public class Crypto { public static String encrypt(String value, String key) throws GeneralSecurityException { SecretKeySpec sks = new SecretKeySpec(hexStringToByteArray(key), "AES"); Cipher cipher = Cipher.getInstance("AES"); cipher.init(Cipher.ENCRYPT_MODE, sks, cipher.getParameters()); byte[] encrypted = cipher.doFinal(value.getBytes()); return byteArrayToHexString(encrypted); } public static String decrypt(String message, String key) throws GeneralSecurityException { SecretKeySpec sks = new SecretKeySpec(hexStringToByteArray(key), "AES"); Cipher cipher = Cipher.getInstance("AES"); cipher.init(Cipher.DECRYPT_MODE, sks); byte[] decrypted = cipher.doFinal(hexStringToByteArray(message)); return new String(decrypted); } private static String byteArrayToHexString(byte[] b){ StringBuffer sb = new StringBuffer(b.length * 2); for (int i = 0; i < b.length; i++){ int v = b[i] & 0xff; if (v < 16) { sb.append('0'); } sb.append(Integer.toHexString(v)); } return sb.toString().toUpperCase(); } private static byte[] hexStringToByteArray(String s) { byte[] b = new byte[s.length() / 2]; for (int i = 0; i < b.length; i++){ int index = i * 2; int v = Integer.parseInt(s.substring(index, index + 2), 16); b[i] = (byte)v; } return b; } }
The best crypto so far seen online quite simple
ReplyDeleteGood crypto code, the best so far. Just what i needed
ReplyDelete