RE: [GD-Windows] Masking strings in an executable
Brought to you by:
vexxed72
From: Daniel V. <vo...@ep...> - 2001-11-23 21:46:08
|
We don't mask strings but use a macro so we can abstract UNICODE support (not supported on some consoles) which makes the code more portable. You could simply scramble the text in the macro and unscramble it in your output function. e.g. myprintf( SCRAMBLE("Hello World") ); - Daniel Vogel, Programmer, Epic Games Inc. > -----Original Message----- > From: gam...@li... > [mailto:gam...@li...]On Behalf Of > Brian Hook > Sent: Friday, November 23, 2001 4:28 PM > To: gam...@li... > Subject: [GD-Windows] Masking strings in an executable > > > I'd like to mask the strings in my executable (e.g. hardcoded strings > for registry entries or what have you). Something like a simple XOR > mask will work fine, however I'd rather avoid XORing all my strings > manually then typing them in, etc. Anyone here have a crafty, efficient > way of masking strings in their EXEs? > > Brian > > > _______________________________________________ > Gamedevlists-windows mailing list > Gam...@li... > https://lists.sourceforge.net/lists/listinfo/gamedevlists-windows > |