This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
extends Node | |
const STEGANO_MAGIC_NUMBER = [0x45, 0x52, 0x4f, 0x31] #ERO1 | |
const STEGANO_CHUNK_END = [0x45, 0x52, 0x4f, 0x45] #EROE | |
const BITS_PER_BYTE = 2 # How many bits we take from each one, 1 is the least singificant bit | |
const STEGANO_FORMAT_VERSION = 1 |
NewerOlder