-
Notifications
You must be signed in to change notification settings - Fork 0
/
blowfish.java
87 lines (79 loc) · 2.92 KB
/
blowfish.java
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
/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
import com.mongodb.BasicDBObject;
import com.mongodb.DBCursor;
import com.mongodb.DBObject;
import java.io.IOException;
import java.io.UnsupportedEncodingException;
import java.security.InvalidKeyException;
import java.security.NoSuchAlgorithmException;
import javax.crypto.BadPaddingException;
import javax.crypto.Cipher;
import javax.crypto.IllegalBlockSizeException;
import javax.crypto.KeyGenerator;
import javax.crypto.NoSuchPaddingException;
import javax.crypto.SecretKey;
/**
*
* @author funky
*/
public class blowfish {
public String encrypt(String str) {
try {
SecretKey key= KeyGenerator.getInstance("blowfish").generateKey();
Cipher ecipher = Cipher.getInstance("blowfish");
ecipher.init(Cipher.ENCRYPT_MODE, key);
byte[] utf8 = str.getBytes("UTF8");
byte[] enc = ecipher.doFinal(utf8);
String s =new sun.misc.BASE64Encoder().encode(enc);
crypter.count++;
DBObject en = new BasicDBObject("id",crypter.count)
.append("string",s);
crypter.collection.insert(en);
crypter.vecb.add(key);
crypter.indexb.add(crypter.count);
return s;
} catch (BadPaddingException e) {
} catch (IllegalBlockSizeException e) {
} catch (UnsupportedEncodingException e) {
} catch (NoSuchAlgorithmException e) {
} catch (InvalidKeyException e) {
} catch (NoSuchPaddingException e) {
}
return null;
}
public String decrypt(int i) throws InvalidKeyException, IOException {
String str = null;
SecretKey key = null;
int j;
int c=0;
for (j=0;j<crypter.indexb.size();j++) {
if(crypter.indexb.get(j)==i) {
c++;
break;
}
}
if(c==0) {
return new String("Wrong Algorithm chosen");
}
try {
Cipher dcipher = Cipher.getInstance("blowfish");
DBObject query = new BasicDBObject("id", i);
DBCursor cursor= crypter.collection.find(query);
str=(String)cursor.one().get("string");
dcipher.init(Cipher.DECRYPT_MODE,crypter.vecb.get(j));
byte[] dec = new sun.misc.BASE64Decoder().decodeBuffer(str);
byte[] utf8 = dcipher.doFinal(dec);
return new String(utf8, "UTF8");
} catch (BadPaddingException e) {
} catch (IllegalBlockSizeException e) {
} catch (UnsupportedEncodingException e) {
} catch (NoSuchAlgorithmException e) {
} catch (NoSuchPaddingException e) {
}
return null;
}
}