Random String Generator
Posted: Wed Jan 31, 2007 5:31 pm
This small program generates random strings made up with the characters you choose. Useful to create passwords and such automatically.
Just edit the .ini file with any brute text editor, such as notepad or wordpad, to alter the behaviour of the program :
Here is the default config file :
The generated string is written on the screen if it's short enough, and always stored in the output file.
You can DOWNLOAD THE PROGRAM HERE (Win 32).
EDIT : Added the "seed" functionnality to make the program more useful from a cryptographical point of view.
Screenshots :
Just edit the .ini file with any brute text editor, such as notepad or wordpad, to alter the behaviour of the program :
Here is the default config file :
Code: Select all
/////////////////////////////
// RANDOM STRING GENERATOR //
// Gamall //
/////////////////////////////
// Config file
// The random string will be generated using the following characters :
$ base = ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789
// Some other possible bases... Just comment (//) those which you do not need...
// $ base = ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789&é#{([-|è_\ç^à@)]°=+}$£%ù*µ§!:/.,?
// $ base = ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789éèàç
// $ base = ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789
// $ base = " ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789"
// The random string will have the following length :
% length = 30
// The random string will be written to the following file :
$ output = Randomly_Generated_String.txt
// The following string will be used to "seed" the pseudo-random generation.
// It would be a good idea to change this string BEFORE you use the program
// to generate important passwords...
$ seed = "I am the standard seed, PLEASE CHANGE ME !!!!"
You can DOWNLOAD THE PROGRAM HERE (Win 32).
EDIT : Added the "seed" functionnality to make the program more useful from a cryptographical point of view.
Screenshots :