Renegade Public Forums
C&C: Renegade --> Dying since 2003™, resurrected in 2024!
Home » Renegade Discussions » Mod Forum » crypt
crypt [message #469642] Sat, 23 June 2012 06:52 Go to previous message
reborn is currently offline  reborn
Messages: 3231
Registered: September 2004
Location: uk - london
Karma:
General (3 Stars)
I am not familiar at all with string encryption and decryption.

I have the following function:

void encrypt (char e[] ) 
{
	for( int i=0; e[i] != '\0'; ++i )
	{
		++e[i];
	}
} 


void decrypt( char * ePtr ) 
{
	for( ; * ePtr != '\0'; ++ ePtr )
	{
		--(* ePtr);
	}
}


It's obviously completely pathetic.

Anyone care to improve this? Something that can boast of industry standard would be excellent.



[Updated on: Sat, 23 June 2012 09:19]

Report message to a moderator

 
Read Message
Read Message
Read Message
Read Message
Read Message
Read Message
Previous Topic: Set_Face_Location() and bots
Next Topic: Commands->Monitor_Sound
Goto Forum:
  


Current Time: Thu Sep 12 07:16:47 MST 2024

Total time taken to generate the page: 0.00919 seconds