Jump to content

Recommended Posts

Posted

I am encrypting this

TEST/lalalala/helloworld/zebras

with the password q

and i get this

173A475B33C71358DAB256C6240180140811A687032018CF03570F72D6101FC7260FEA2A5549E534D2C612703E75BC6B26A481436A0ABE1C5DD2B62C8F2D

the problem is that the encrypted text is 124 characters long.

this is too long for my purposes.

I dont really need that much security I just need the text unreadable.

is there a way to encrypt the text which does not produce such a large result?

Valik Note Added 19 October 2006 - 08:38 AMAdded to warn level I just plain don't like you.

Posted (edited)

Hi,

this reduces it to 62 characters and makes it, on my point of view, unreadable:

#Include <String.au3>

$string = "TEST/lalalala/helloworld/zebras"
$unread = _StringToHex ($string)
Msgbox (0,"", $unread & @CRLF & _HexToString ($unread) & @CRLF & Stringlen ($unread))

;-))

Stefan

Edited by 99ojo

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...