Skip to content

:bowtie: My attempt in obfuscating a small C program that gets some text as input and prints it in 'ascii-art'.

License

Notifications You must be signed in to change notification settings

pauwell/obfuscated-text

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

16 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

obfuscated-text

Converts a string of characters into ascii-art.

    ~ String to art ~
    - Paul Bernitz -
	  2016

Font-storage:

const unsigned char letter_a[5] = { 0xF9F99 };

"A"	Binary	Hex
****	1111    0xF
*  *  	1001  	0x9
**** 	1111  	0xF
*  *  	1001  	0x9
*  *  	1001  	0x9

Compiled with: gcc version 4.4.1 mingw32

gcc -o C:/CCode/out C:/CCode/main.c

start C:/CCode/out.exe "Hello World" "C:/CCode/output.txt"

About

:bowtie: My attempt in obfuscating a small C program that gets some text as input and prints it in 'ascii-art'.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages