220
221
222
223
224
225
226
227
228
229
|
# File 'lib/origami/obfuscation.rb', line 220
def to_obfuscated_str
content = ""
content << @dictionary.to_obfuscated_str
content << "stream" + EOL
content << self.encoded_data
content << EOL << TOKENS.last
super(content)
end
|