-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCryptography.java
More file actions
225 lines (183 loc) · 5.24 KB
/
Copy pathCryptography.java
File metadata and controls
225 lines (183 loc) · 5.24 KB
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
219
220
221
222
223
224
225
import java.security.KeyFactory;
import java.security.KeyPair;
import java.security.KeyPairGenerator;
import java.security.NoSuchAlgorithmException;
import java.security.NoSuchProviderException;
import java.security.PrivateKey;
import java.security.PublicKey;
import java.security.SecureRandom;
import java.security.spec.PKCS8EncodedKeySpec;
import java.security.spec.X509EncodedKeySpec;
import java.security.MessageDigest ;
import java.security.Signature;
import javax.crypto.Cipher;
import java.util.*;
import java.nio.charset.*;
public class Cryptography
{
private static final String ALGORITHM = "RSA";
private static MessageDigest md = null;
private static final Charset ISO_8859_1 = StandardCharsets.ISO_8859_1;
public static byte[] encrypt(byte[] publicKey, byte[] inputData)
throws Exception
{
PublicKey key = KeyFactory.getInstance(ALGORITHM)
.generatePublic(new X509EncodedKeySpec(publicKey));
Cipher cipher = Cipher.getInstance(ALGORITHM);
cipher.init(Cipher.ENCRYPT_MODE, key);
byte[] encryptedBytes = cipher.doFinal(inputData);
return encryptedBytes;
}
public static String encrypt(String key, String input)
{
try
{
byte[] temp = encrypt(toBytes(key),toBytes(input));
return toString(temp);
}
catch(Exception e)
{
e.printStackTrace();
}
return null;
}
public static String decrypt(byte[] key, String input)
{
try
{
byte[] temp = decrypt(key,toBytes(input));
return toString(temp);
}
catch(Exception e)
{
return "";
//e.printStackTrace();
}
//return null;
}
public static String decrypt(String key, String input)
{
try
{
byte[] temp = decrypt(toBytes(key),toBytes(input));
return toString(temp);
}
catch(Exception e)
{
return "";
//e.printStackTrace();
}
//return null;
}
public static byte[] decrypt(byte[] privateKey, byte[] inputData)
throws Exception
{
PrivateKey key = KeyFactory.getInstance(ALGORITHM)
.generatePrivate(new PKCS8EncodedKeySpec(privateKey));
Cipher cipher = Cipher.getInstance(ALGORITHM);
cipher.init(Cipher.DECRYPT_MODE, key);
byte[] decryptedBytes = cipher.doFinal(inputData);
return decryptedBytes;
}
public static KeyPair generateKeyPair()
throws NoSuchAlgorithmException, NoSuchProviderException {
KeyPairGenerator keyGen = KeyPairGenerator.getInstance(ALGORITHM);
SecureRandom random = SecureRandom.getInstance("SHA1PRNG", "SUN");
// 512 is keysize
keyGen.initialize(512, random);
KeyPair generateKeyPair = keyGen.generateKeyPair();
return generateKeyPair;
}
public static String toString(byte[] ar)
{
try
{
// return Base64.getEncoder().encodeToString(ar).trim();
return new String(ar, ISO_8859_1);
}
catch(Exception e)
{
e.printStackTrace();
}
return null;
}
public static byte[] toBytes(String s)
{
// return Base64.getDecoder().decode(s);
//return s.getBytes("UTF-8");
try
{
// int l = 4 - (s.length()%4);
// for(int i=0;i<l;++i)
// s+=" ";
// return Base64.getDecoder().decode(s);
return s.getBytes(ISO_8859_1);
}
catch(Exception e)
{
e.printStackTrace();
}
return null;
}
public static String sign(String plainText, PrivateKey privateKey)
{
try
{
Signature privateSignature = Signature.getInstance("SHA256withRSA");
privateSignature.initSign(privateKey);
privateSignature.update(plainText.getBytes());
byte[] signature = privateSignature.sign();
return toString(signature);
}
catch(Exception e)
{
// e.printStackTrace();
}
return null;
}
public static Boolean verify(String plainText, String signature, String publicKey)
{
try
{
PublicKey key = KeyFactory.getInstance(ALGORITHM)
.generatePublic(new X509EncodedKeySpec(toBytes(publicKey)));
Signature publicSignature = Signature.getInstance("SHA256withRSA");
publicSignature.initVerify(key);
publicSignature.update(plainText.getBytes());
byte[] signatureBytes = toBytes(signature);
return publicSignature.verify(signatureBytes);
}
catch(Exception e)
{
// e.printStackTrace();
//return false;
}
return null;
}
public static void main(String[] args) throws Exception {
KeyPair generateKeyPair = generateKeyPair();
byte[] publicKey = generateKeyPair.getPublic().getEncoded();
byte[] privateKey = generateKeyPair.getPrivate().getEncoded();
KeyPair g2 = generateKeyPair();
System.out.println(Arrays.equals(privateKey, g2.getPrivate().getEncoded()));
// String s = "1234 678";
// // for(int i=0;i<publicKey.length;++i)
// // System.out.println(publicKey[i]);
// // System.out.println(toString(toBytes(s)));
// byte[] ar = {65,66,67};
// byte[] ar2 = toBytes(toString(publicKey));
// System.out.println(Arrays.equals(publicKey, ar2));
// String test = encrypt(toString(publicKey), "whyyy");
// String dec = decrypt(toString(privateKey), test);
// System.out.println(dec);
// // byte[] encryptedData = encrypt(publicKey,
// // "hi there".getBytes());
// // byte[] decryptedData = decrypt(privateKey, encryptedData);
// String sig = sign("hey there",generateKeyPair.getPrivate());
// boolean verif = verify("hey there",sig,toString(publicKey));
// System.out.println(sig);
// System.out.println(verif);
// String pub =
// System.out.println(pub.length());
}
}