['''
' P_S_B_E (Password_Seeded_Bit_Encryption), version 1.1
'
' (C)opyright 2004, Pure QB Innovations
'
'
' Email any questions, comments, or beta results to...
' ESmemberNEMESIS@aol.com
'
' Visit the Pure QB Innovations web site at...
' http://members.aol.com/esmembernemesis/index.htm
'
' THIS PROGRAM MAY BE DISTRIBUTED FREELY AS PUBLIC DOMAIN SOFTWARE
' AS LONG AS ANY PART OF THIS FILE IS NOT ALTERED IN ANY WAY.
' IF YOU DO WISH TO USE THESE ROUTINES IN YOUR OWN PROGRAMS
' THEN PLEASE GIVE CREDIT TO THE AUTHOR... Mario LaRosa.
'
'''
'
'
'
'
'
'
Title:
'
Menu:
PRINT "Please choose an option..." Choice$ = "encrypt"
Choice$ = "decrypt"
'
File:
PRINT "of the file you wish to "; Choice$;
"..." '
Pass:
PRINT:
PRINT "Enter password to "; Choice$;
" this file..." LenPassword
= LEN(Password$
)'
Plant:
seed& = &H8000
r
= INT(RND(1) * LenPassword
+ 1) seed&
= seed&
+ ASC(MID$(Password$
, r
, 1)) + (&H100 * (x
- 1))'
Algorithm:
r
= INT(RND(1) * LenPassword
+ 1) r
= INT(RND(1) * LenPassword
+ 1)'
Status:
'
Event:
'
]