-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfreekey-externs.js
More file actions
74 lines (72 loc) · 2.03 KB
/
freekey-externs.js
File metadata and controls
74 lines (72 loc) · 2.03 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
var sjcl = {
"cipher": {
"aes": function () {}
},
"hash": {
"sha256": function () {},
"sha1": function () {},
"md5": function () {}
},
"keyexchange": function () {},
"mode": {
"ccm": {
"name": {},
"encrypt": function () {},
"decrypt": function () {}
}
},
"misc": {
"hmac": function () {},
"pbkdf2": function () {}
},
"codec": {
"utf8String": {
"fromBits": function () {},
"toBits": function () {}
},
"hex": {
"fromBits": function () {},
"toBits": function () {}
},
"base64": {
"fromBits": function () {},
"toBits": function () {}
}
},
"exception": {
"corrupt": function () {},
"invalid": function () {},
"bug": function () {},
"notReady": function () {}
},
"bitArray": {
"bitSlice": function () {},
"extract": function () {},
"concat": function () {},
"bitLength": function () {},
"clamp": function () {},
"partial": function () {},
"getPartial": function () {},
"equal": function () {}
},
"random": {
"randomWords": function () {},
"setDefaultParanoia": function () {},
"addEntropy": function () {},
"isReady": function () {},
"getProgress": function () {},
"startCollectors": function () {},
"stopCollectors": function () {},
"addEventListener": function () {},
"removeEventListener": function () {}
}
}
jQuery.postmsg;
$.postmsg;
jQuery.postmsg.listen = function(origin, type, fn) {};
$.postmsg.listen = function(origin, type, fn) {};
jQuery.postmsg.send = function(target, origin, type, data, callbacks) {};
$.postmsg.send = function(target, origin, type, data, callbacks) {};
jQuery.postmsg.cancel = function(type, fn) {};
$.postmsg.cancel = function(type, fn) {};
jQuery.prototype.fkclip = function(options) {};