TGC Codebase Backup



AlphaNumeric String Generator by Anonymous Coder

16th Oct 2006 21:59
Summary

AlphaNumeric String Generator Produces Medium-High Incryption Passwords. Any length.. No length limits.



Description

This program is built around randomize timer.
Because the timer is based on internal bytes the produced alphanumeric string is
always totally random.

If it was not built around the timer. It would not produce random code.

Thank you. Good for passwords.usernames. anything that requires a string of numbers and letters randomly created.



Code
                                    ` This code was downloaded from The Game Creators
                                    ` It is reproduced here with full permission
                                    ` http://www.thegamecreators.com
                                    
                                    Rem * Title  : LASTVERSION
Rem * Author : FMJD
Rem * Date   : AUGUST25TH,2006
rem about to start second attempt to set program
REM SUCCESS 2ND ATTEMPT
REM THIS IS A RANDOM ALPHANUMERIC STRING GENERATOR
REM THIS PROGRAM DOES NOT CREATE DICTIONARY WORDS, IF IT DOES IT IS SIMPLY BY A RANDOM ACT
REM MOST OF THE TIME THE WORD WILL NOT BE A KNOWN ENGLISH WORD
REM *********start of random alpha string generator************

startprogram:
a$="ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789"
nux=36
ll$=""
sync on
sync off
CLS

PRINT "THEN THE PROGRAM WILL PRINT A COMBINATION OF LETTERS AND NUMBERS THAT CAN BE-"
PRINT "USED AS A SOLID PASSWORD HAVING A MEDIUM-HIGH SECURITY LEVEL."
PRINT "THANK YOU FOR TRYING OUT MY 3RD PROGRAM WRITTEN IN DARK BASIC ELECTRONIC."
PRINT "PRESS ESC KEY AT THE LEFT SIDE OF YOUR KEYBOARD TO END THIS PROGRAM. THANX!"

PRINT
PRINT
PRINT
do


INPUT "HOW MANY CAPITAL LETTERS?  ";HML
for a=1 to HML
RANDOMIZE TIMER()



LL$=MID$(a$,RND(36))


PRINT LL$;
LL$=""

next a
PRINT
PRINT

PRINT "PRESS ANY KEY TO CONTINUE PROGRAM...."
PRINT "PRESS ESC KEY AT LEFT SIDE OF KEYBOARD TO END PROGRAM....."

SUSPEND FOR KEY


CLS


loop


end
REM BY FLOYD M J DONALDSON
REM JULY 30TH, 2006 A.D.
REM TIME 10:54 PM EST COMPILATION TIME.