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
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
use std::{error::Error, fs, path::Path};
static UNKNOWN_CHAR_MAP: &[(u8, &str)] = &[
(0, r"Null (\0)"),
(1, "SOH"),
(2, "STX"),
(3, "ETX"),
(4, "EOT"),
(5, "ENQ"),
(6, "ACK"),
(7, "BEL"),
(8, r"Backspace (\b)"),
(9, r"Tab (\t)"),
(11, r"Vertical Tab (\v)"),
(12, r"Form Feed (\f)"),
(14, "SO"),
(15, "SI"),
(16, "DLE"),
(17, "DC1"),
(18, "DC2"),
(19, "DC3"),
(20, "DC4"),
(21, "NAK"),
(22, "SYN"),
(23, "ETB"),
(24, "CAN"),
(25, "EM"),
(26, "SUB"),
(27, "ESC"),
(28, "FS"),
(29, "GS"),
(30, "RS"),
(31, "US"),
(127, "DEL"),
];
fn get_nonprintable_char_repr(key: u8) -> Option<&'static str> {
UNKNOWN_CHAR_MAP
.binary_search_by(|(k, _)| k.cmp(&key))
.map(|x| UNKNOWN_CHAR_MAP[x].1)
.ok()
}
struct UnknownCharacterError {
descriptor: String,
}
impl UnknownCharacterError {
fn new(character: u8, line: u64) -> Self {
UnknownCharacterError {
descriptor: if character < 128 {
match get_nonprintable_char_repr(character) {
Some(repr) => format!("{line}: cannot encode {repr} character"),
None => format!("{line}: ASCII {character}"),
}
} else {
format!("{line}: attempt to encode UTF8 character sequence (this program only can encode ascii non-control characters and newlines)")
},
}
}
}
impl std::string::ToString for UnknownCharacterError {
fn to_string(&self) -> String {
self.descriptor.clone()
}
}
pub fn zalgo_encode(string_to_compress: &str) -> Result<String, String> {
let mut line = 1;
let mut result: Vec<u8> = vec![b'E'];
for c in string_to_compress.bytes() {
if c == b'\r' {
return Err(r"non-unix line endings detected (carriage return \r)".into());
}
if c == b'\n' {
line += 1;
}
if !(32..=126).contains(&c) && c != b'\n' {
return Err(UnknownCharacterError::new(c, line).to_string());
}
let v: u8 = if c == b'\n' { 111 } else { (c - 11) % 133 - 21 };
result.push((v >> 6) & 1 | 0b11001100);
result.push((v & 63) | 0b10000000);
}
match std::str::from_utf8(&result) {
Ok(s) => Ok(s.into()),
Err(e) => Err(e.to_string()),
}
}
pub fn zalgo_encode_python(string_to_encode: &str) -> Result<String, String> {
let encoded_string = zalgo_encode(string_to_encode)?;
Ok(format!("b='{encoded_string}'.encode();exec(''.join(chr(((h<<6&64|c&63)+22)%133+10)for h,c in zip(b[1::2],b[2::2])))"))
}
pub fn zalgo_decode(compressed: &str) -> Result<String, String> {
let bytes: Vec<u8> = compressed
.bytes()
.skip(1)
.step_by(2)
.zip(compressed.bytes().skip(2).step_by(2))
.map(|(odds, evens)| (((odds << 6 & 64 | evens & 63) + 22) % 133 + 10))
.collect();
match std::str::from_utf8(&bytes) {
Ok(s) => Ok(s.into()),
Err(e) => Err(e.to_string()),
}
}
pub fn encode_file<P: AsRef<Path>>(in_file: P, out_file: P) -> Result<(), Box<dyn Error>> {
let mut string_to_encode = fs::read_to_string(in_file)?;
if string_to_encode.contains("\t") {
eprintln!("found tabs in the file, replacing with four spaces");
string_to_encode = string_to_encode.replace("\t", " ");
}
let encoded_string = zalgo_encode(&string_to_encode)?;
match zalgo_decode(&encoded_string) {
Ok(s) => {
if s != string_to_encode {
return Err("unknown error: encoding process corrupted the input string".into());
}
}
Err(e) => return Err(e.into()),
}
fs::File::create(&out_file)?;
fs::write(out_file, encoded_string)?;
Ok(())
}
pub fn encode_python_file<P: AsRef<Path>>(in_file: P, out_file: P) -> Result<(), Box<dyn Error>> {
let mut string_to_encode = fs::read_to_string(in_file)?;
if string_to_encode.contains("\t") {
eprintln!("found tabs in the file, replacing with four spaces");
string_to_encode = string_to_encode.replace("\t", " ");
}
let encoded_string = zalgo_encode_python(&string_to_encode)?;
fs::File::create(&out_file)?;
fs::write(out_file, encoded_string)?;
Ok(())
}
#[cfg(test)]
mod tests {
use super::*;
use std::path::PathBuf;
#[test]
fn verify() {
const TEST_STRING_1: &str = "the greatest adventure is going to bed";
let out_string = std::str::from_utf8(b"E\xcd\x94\xcd\x88\xcd\x85\xcc\x80\xcd\x87\xcd\x92\xcd\x85\xcd\x81\xcd\x94\xcd\x85\xcd\x93\xcd\x94\xcc\x80\xcd\x81\xcd\x84\xcd\x96\xcd\x85\xcd\x8e\xcd\x94\xcd\x95\xcd\x92\xcd\x85\xcc\x80\xcd\x89\xcd\x93\xcc\x80\xcd\x87\xcd\x8f\xcd\x89\xcd\x8e\xcd\x87\xcc\x80\xcd\x94\xcd\x8f\xcc\x80\xcd\x82\xcd\x85\xcd\x84").unwrap();
assert_eq!(zalgo_encode(TEST_STRING_1).unwrap(), out_string);
const TEST_STRING_2: &str =
"I'll have you know I graduated top of my class in the Navy Seals";
assert_eq!(
zalgo_decode(&zalgo_encode(TEST_STRING_2).unwrap()).unwrap(),
TEST_STRING_2
);
const ASCII_CHAR_TABLE: &str = r##"ABCDEFGHIJKLMNOPQRSTUVXYZabcdefghijklmnopqrstuvxyz1234567890 !"#$%&'()*+,-./:;<=>?@"##;
assert_eq!(
zalgo_decode(&zalgo_encode(ASCII_CHAR_TABLE).unwrap()).unwrap(),
ASCII_CHAR_TABLE
);
}
#[test]
fn newlines() {
assert_eq!(&zalgo_encode("\n").unwrap(), "Eͯ",);
const TEST_STRING: &str = "The next sentence is true.\nThe previous sentence is false.";
assert_eq!(
zalgo_decode(&zalgo_encode(TEST_STRING).unwrap()).unwrap(),
TEST_STRING,
);
}
#[test]
fn check_errors() {
assert!(zalgo_encode("We got the Ä Ö Å, you aint got the Ä Ö Å").is_err());
assert!(zalgo_encode("\t").is_err());
assert!(zalgo_encode("\r").is_err());
}
#[test]
fn file_encoding() {
let mut lorem_path = PathBuf::new();
let mut zalgo_path = PathBuf::new();
lorem_path.push("tests");
lorem_path.push("lorem.txt");
zalgo_path.push("tests");
zalgo_path.push("zalgo.txt");
encode_file(&lorem_path, &zalgo_path).unwrap();
let zalgo_text = fs::read_to_string(&zalgo_path).unwrap();
let lorem_text = fs::read_to_string(lorem_path).unwrap();
assert_eq!(zalgo_decode(&zalgo_text).unwrap(), lorem_text);
fs::remove_file(zalgo_path).unwrap();
}
#[test]
fn python_encoding() {
let mut lorem_path = PathBuf::new();
let mut zalgo_path = PathBuf::new();
lorem_path.push("tests");
lorem_path.push("lorem.py");
zalgo_path.push("tests");
zalgo_path.push("zalgo.py");
encode_python_file(&lorem_path, &zalgo_path).unwrap();
let _zalgo_text = fs::read_to_string(&zalgo_path).unwrap();
let _lorem_text = fs::read_to_string(lorem_path).unwrap();
fs::remove_file(zalgo_path).unwrap();
}
}