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
#![forbid(unsafe_code)]
use core::{fmt, str};
use std::error::Error;
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)"),
(13, r"Carriage Return (\r)"),
(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(character: u8) -> Option<&'static str> {
if character < 10 {
Some(UNKNOWN_CHAR_MAP[usize::from(character)].1)
} else if character < 32 {
Some(UNKNOWN_CHAR_MAP[usize::from(character) - 1].1)
} else if character == 127 {
Some(UNKNOWN_CHAR_MAP[31].1)
} else {
None
}
}
#[cfg(any(doc, feature = "files"))]
mod files;
#[cfg(any(doc, feature = "files"))]
pub use files::*;
pub fn zalgo_encode(string_to_compress: &str) -> Result<String, UnencodableByteError> {
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(UnencodableByteError::new(c, line));
}
if c == b'\n' {
line += 1;
}
if !(32..=126).contains(&c) && c != b'\n' {
return Err(UnencodableByteError::new(c, line));
}
let v = if c == b'\n' { 111 } else { (c - 11) % 133 - 21 };
result.push((v >> 6) & 1 | 0b11001100);
result.push((v & 63) | 0b10000000);
}
Ok(str::from_utf8(&result)
.expect("the encoding process should not produce invalid utf8")
.into())
}
pub fn zalgo_decode(encoded: &str) -> Result<String, str::Utf8Error> {
let bytes: Vec<u8> = encoded
.bytes()
.skip(1)
.step_by(2)
.zip(encoded.bytes().skip(2).step_by(2))
.map(|(odds, evens)| (((odds << 6 & 64 | evens & 63) + 22) % 133 + 10))
.collect();
str::from_utf8(&bytes).map(|s| s.to_owned())
}
pub fn zalgo_wrap_python(string_to_encode: &str) -> Result<String, UnencodableByteError> {
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])))"))
}
#[derive(Debug)]
pub struct UnencodableByteError {
byte: u8,
line: usize,
}
impl UnencodableByteError {
fn new(byte: u8, line: usize) -> Self {
Self { byte, line }
}
pub fn line_number(&self) -> usize {
self.line
}
pub fn unencodable_character_value(&self) -> u8 {
self.byte
}
}
impl fmt::Display for UnencodableByteError {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
if self.byte < 128 {
match get_nonprintable_char_repr(self.byte) {
Some(repr) => write!(f, "line {}: cannot encode {repr} character", self.line),
None => write!(
f,
"line {}: cannot encode ASCII character #{}",
self.line, self.byte
),
}
} else {
write!(f, "line {}: attempt to encode Utf-8 character sequence (this program can only encode non-control ASCII characters and newlines)", self.line)
}
}
}
impl Error for UnencodableByteError {
fn source(&self) -> Option<&(dyn Error + 'static)> {
None
}
}
#[cfg(test)]
mod test {
use super::*;
#[test]
fn check_unknown_char_map() {
for i in 0_u8..10 {
assert_eq!(
get_nonprintable_char_repr(i).unwrap(),
UNKNOWN_CHAR_MAP[usize::from(i)].1
);
}
for i in 11_u8..32 {
assert_eq!(
get_nonprintable_char_repr(i).unwrap(),
UNKNOWN_CHAR_MAP[usize::from(i - 1)].1
);
}
assert_eq!(
get_nonprintable_char_repr(127).unwrap(),
UNKNOWN_CHAR_MAP[31].1
);
}
}