forked from chanios/Encrypt-Decrypt-code-PHP
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathencryptlib.js
More file actions
34 lines (34 loc) · 703 Bytes
/
encryptlib.js
File metadata and controls
34 lines (34 loc) · 703 Bytes
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
//****************************************//
// encrypt and decrypt
// library
// made by chan022
// v.1.0
//****************************************//
function md5decode(hash){
var output;
$.ajax({
type: "POST",
url: ("brute-force.php?md5=" + hash),
data: {
},
async: false,
dataType: "json",
success: function(data){
output = data.output;
}});
return output;
}
function md5encode(hash){
var output;
$.ajax({
type: "POST",
url: ("encrypt.php?md5=" + hash),
data: {
},
async: false,
dataType: "json",
success: function(data){
output = data.output;
}});
return output;
}