This repository has been archived by the owner on Sep 9, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Main.sublime-commands
82 lines (82 loc) · 1.7 KB
/
Main.sublime-commands
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
[
{
"caption": "Hasher: MD5",
"command": "md5",
"args": {}
},
{
"caption": "Hasher: SHA1",
"command": "sha1",
"args": {}
},
{
"caption": "Hasher: SHA224",
"command": "sha224",
"args": {}
},
{
"caption": "Hasher: SHA256",
"command": "sha256",
"args": {}
},
{
"caption": "Hasher: SHA384",
"command": "sha384",
"args": {}
},
{
"caption": "Hasher: SHA512",
"command": "sha512",
"args": {}
},
{
"caption": "Hasher: NTLM",
"command": "ntlm",
"args": {}
},
{
"caption": "Hasher: Base64 Encode",
"command": "base64_encode",
"args": {}
},
{
"caption": "Hasher: Base64 Decode",
"command": "base64_decode",
"args": {}
},
{
"caption": "Hasher: URI Component Encode",
"command": "uri_component_encode",
"args": {}
},
{
"caption": "Hasher: URI Component Decode",
"command": "uri_component_decode",
"args": {}
},
{
"caption": "Hasher: Entity Encode",
"command": "entity_encode",
"args": {}
},
{
"caption": "Hasher: Entity Decode",
"command": "entity_decode",
"args": {}
},
{
"caption": "Hasher: Unicode Escape",
"command": "unicode_escape",
"args": {}
},
{
"caption": "Hasher: Unicode Unescape",
"command": "unicode_unescape",
"args": {}
},
{
"caption": "Hasher: Insert UNIX Timestamp",
"command": "current_unix_timestamp",
"args": {}
}
]