RoAndrei Posted September 5, 2014 Share Posted September 5, 2014 So i need to create strings made of 32 characters : numbers + letters only.something like 'ed0e612c9cdf6fc92cc8ed032979357f' I need to create them one by one so they wont repeat twice , so i need to make them by a rule.I need to get all the combinations possible. Can you guys give me a code that would do that? I'd really apreciate that. Thx I know it will take long to take all the combinations, time is not the problem, that code will be implemented in a little pogram that i made for myself I tried to create one by myself, but i didnt sleep for like 3 days and I can't actually think right now. Link to comment Share on other sites More sharing options...
Solution jchd Posted September 5, 2014 Solution Share Posted September 5, 2014 32 hex chars = 16 bytes = 2128 = 340282366920938463463374607431768211456 combinations, about 2.7 times the distance from Earth to the Hubble Deep Field, measured in picometers. Despite time not being a problem for you, I nonetheless wish you good luck living that long for trying all these little values with your little program. When you're able to think again after some sleep, please read forum rules which forbid brute force attacks. 232showtime 1 This wonderful site allows debugging and testing regular expressions (many flavors available). An absolute must have in your bookmarks.Another excellent RegExp tutorial. Don't forget downloading your copy of up-to-date pcretest.exe and pcregrep.exe hereRegExp tutorial: enough to get startedPCRE v8.33 regexp documentation latest available release and currently implemented in AutoIt beta. SQLitespeed is another feature-rich premier SQLite manager (includes import/export). Well worth a try.SQLite Expert (freeware Personal Edition or payware Pro version) is a very useful SQLite database manager.An excellent eBook covering almost every aspect of SQLite3: a must-read for anyone doing serious work.SQL tutorial (covers "generic" SQL, but most of it applies to SQLite as well)A work-in-progress SQLite3 tutorial. Don't miss other LxyzTHW pages!SQLite official website with full documentation (may be newer than the SQLite library that comes standard with AutoIt) Link to comment Share on other sites More sharing options...
Recommended Posts