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
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
//! LITCRYPT2
//! ===========
//!
//! It's a short name of "Literal Encryption", a Rust proc macro that encrypts text using a basic XOR method. It protect plain text from static analysis tools and helps keep your important app safe from cracking activity.
//!
//! LITCRYPT2 encrypts strings when compiling, keeping them encrypted in both disk and memory while running, and only decrypting them when needed.
//!
//! This crate is just a maintained and updated fork of the original crate, **LITCRYPT** by **Robin Syihab (r@ansvia.com)**.
//!
//! USAGE
//! -----
//!
//! Dependencies:
//!
//! ```rust
//! [dependencies]
//! litcrypt2_nostd = "0.1.0"
//! ```
//!
//! Example:
//!
//! ```rust
//! #[macro_use]
//! extern crate litcrypt2_nostd;
//!
//! use_litcrypt!();
//!
//! fn main()
//! {
//! println!("his name is: {}", lc!("Voldemort"));
//! }
//!
//! fn raw_string()
//! {
//! println!("The command line console can be found in the path {}", lc!(r"C:\Windows\System32\cmd.exe"));
//! }
//! ```
//!
//! `use_litcrypt!` macro call should be called first for initialization before you can
//! use `lc!` macro function.
//!
//! Please take note that you can set your encryption key to a specific value using the environment variable
//! `LITCRYPT_ENCRYPT_KEY` before compile. In case that you don't set this environment variable, the crate
//! will generate a random encryption key at compilation time:
//! e.g:
//!
//! $ export LITCRYPT_ENCRYPT_KEY="myverysuperdupermegaultrasecretkey"
//!
//! Litcrypt will encrypt each string written inside `lc!` statically.
//!
//! Check the output binary using `strings` command to verify:
//!
//! $ strings target/debug/my_valuable_app | grep Voldemort
//!
//! If the output is blank then your valuable string in your app is safe from static analyzer tool
//! like Hexeditor etc.
//!
//! For working example code see `./examples` directory, and test using:
//!
//! $ cargo run --example simple
extern crate proc_macro;
extern crate proc_macro2;
extern crate rand;
extern crate quote;
extern crate expectest;
extern crate alloc;
use ;
use Literal;
use ;
use quote;
use env;
lazy_static!
/// Sets the encryption key used for encrypting subsequence strings wrapped in a [`lc!`] macro.
///
/// This key is also encrypted an will not visible in a static analyzer.
/// Encrypts the resp. string with the key set before, via calling [`use_litcrypt!`].
/// Encrypts an environment variable at compile time with the key set before, via calling [`use_litcrypt!`].