26332 total geeks with 3498 solutions
Recent challengers:
  • krc bonus 5 - 12:32PM
  • krc bonus 23 - 11:03AM
  • krc bonus 12 - 08:08AM
 Welcome, you are an anonymous user! [register] [login] Get a yourname@osix.net email address 

Articles

GEEK

User's box
Username:
Password:

Forgot password?
New account

Shoutbox
MaxMouse
It's Friday... That's good enough for me!
CodeX
non stop lolz here but thats soon to end thanks to uni, surely the rest of the world is going good?
stabat
how things are going guys? Here... boring...
CodeX
I must be going wrong on the password lengths then, as long as it was done on ECB
MaxMouse
lol... the key is in hex (MD5: of the string "doit" without the "'s) and is in lower case. Maybe i should have submitted this as a challenge!

Donate
Donate and help us fund new challenges
Donate!
Due Date: Jun 30
June Goal: $40.00
Gross: $0.00
Net Balance: $0.00
Left to go: $40.00
Contributors


News Feeds
The Register
Thousands of
suspected crims,
informants spilled
all over web in IT
gaffe
BT boss QUITS
telecoms giant for
front-bench gov job
NASA probe eases
through Saturn"s
ring to grab Earth
snapshot
Ex-Systemax veep
cuffed, charged
with $230m fraud
Roving IT
contractors and
private landlords
are my heroes -
here"s why
Wi-Fi Alliance
takes grid place,
revs engine in race
to 802.11ac
Julian Assange: I"m
quite happy to
sleep on Ecuador"s
sofa FOREVER
Supercomputer sage
Cray musters Lustre
cluster storage
hustler
Sneaky Seagate
slips "world"s
fastest" enterprise
disk mutant into
the wild
Hey mobile firms:
About that Android
thing... Did Google
add a lockout
clause?
Slashdot
NSA"s Role In
Terror Cases
Concealed From
Defense Lawyers
Lobster, a New Game
Programming
Language, Now
Available As Open
Source
Google"s Crazy Lack
of Focus: Is It
Really Serious
About Enterprise?
Cat-like Robot Runs
Like the Wind
Revisiting Amdahl"s
Law
Altering Text In
eBooks To Track
Pirates
NVIDIA To License
Its GPU Tech
MySQL Man Pages
Silently Relicensed
Away From GPL
Verizon Accused of
Intentionally
Slowing Netflix
Video Streaming
Oculus Rift Raises
Another $16 Million
Article viewer

Yet another Qbasic example



Written by:dimport
Published by:dimport
Published on:2003-06-21 07:19:46
Topic:Miscellaneous
Search OSI about Miscellaneous.More articles by dimport.
 viewed 9821 times send this article printer friendly

Digg this!
    Rate this article :
Here is an encryption program that i made in Q basic. I basically compiled some prog's i found on the internet.


SCREEN 2: SCREEN 0: CLS

Menu:

LOCATE 1, 15: PRINT "CRYPTOR v1.0"

LOCATE 2, 15: PRINT "by ADAM PERRY & MATT OCHS"

LOCATE 3, 13: PRINT " Main Menu "

LOCATE 5, 10: PRINT "E]ncrypt message"

LOCATE 7, 10: PRINT "D]ecrypt message"

LOCATE 9, 10: PRINT "Q]uit Cryptor"

Loop1:

GOSUB GetKey: IF A$ = "E" THEN GOTO Encrypt ELSE IF A$ = "D" THEN GOTO Decrypt ELSE IF A$ = "Q" THEN GOTO Quit ELSE GOTO Loop1

GetKey:

A$ = UCASE$(INKEY$): IF A$ = "" THEN GOTO GetKey

RETURN

Encrypt:

CLS

PRINT "All information except for the file name is capitalization-snsitive."

PRINT "This means that capitalization will affect the message."

INPUT "Recipiant name"; N$

INPUT "File name"; F$

INPUT "Encrypt code"; C$

CLS

INPUT "Message text: ", M$

OPEN F$ + ".CPT" FOR OUTPUT AS #1

A = 0: B = 0: C = 0: CR$ = ""

DO WHILE A LEN(N$) THEN B = 1

C = C + 1: IF C > LEN(C$) THEN C = 1

D = ASC(MID$(M$, A, 1)) + ASC(MID$(N$, B, 1)) + ASC(MID$(C$, C, 1))

Loop2:

IF D > 255 THEN D = D - 255: GOTO Loop2

CR$ = CR$ + CHR$(D)

LOOP

WRITE #1, CR$: CLOSE

CLS : GOTO Menu:

Decrypt:

CLS

PRINT "All information exept the file name is capitalization-sensitive."

PRINT "This means that capitalization will affect the message."

INPUT "Recipiant name"; N$

INPUT "File name"; F$

INPUT "Encypt code"; C$

CLS : CR$ = ""

OPEN F$ + ".CPT" FOR INPUT AS #1

INPUT #1, CR$

CLOSE

A = 0: B = 0: C = 0: M$ = ""

DO WHILE A LEN(N$) THEN B = 1

C = C + 1: IF C > LEN(C$) THEN C = 1

D = ASC(MID$(CR$, A, 1)) - (ASC(MID$(N$, B, 1)) + ASC(MID$(C$, C, 1)))

Loop3:

IF D < 1 THEN D = D + 255: GOTO Loop3

M$ = M$ + CHR$(D)

LOOP

Menu2:

CLS

LOCATE 1, 15: PRINT "Cryptor v1.0"

LOCATE 2, 15: PRINT "by ADAM PERRY & MATT OCHS"

LOCATE 3, 13: PRINT "Decryption Complete"

LOCATE 5, 10: PRINT "V]iew message"

LOCATE 7, 10: PRINT "S]ave message"

LOCATE 9, 10: PRINT "Main menu"

Loop4:

GOSUB GetKey: IF A$ = "V" THEN GOTO ViewMessage ELSE IF A$ = "S" THEN GOTO Save

IF A$ = "M" THEN GOTO Menu ELSE GOTO Loop4

ViewMessage:

CLS : PRINT M$: GOSUB GetKey: GOTO Menu2

Save:

OPEN F$ + ".TXT" FOR OUTPUT AS #1

WRITE #1, M$

CLOSE : GOTO Menu2

Quit:

CLS : SYSTEM




Well, thats it.

This article was originally written by Apocolipse

Did you like this article? There are hundreds more.

Comments:
Anonymous
2007-10-11 21:25:37
You stringed all your variables wrong, A LEN is also incorrect. If you tried to run it, it would not work, 100% about that. Nice try though.
Anonymously add a comment: (or register here)
(registration is really fast and we send you no spam)
BB Code is enabled.
Captcha Number:


Blogs: (People who have posted blogs on this subject..)
Action
First one on Tue 12th Jan 10pm
Yaw, this is the first blog post, just to begin with something. Nice site here, cool features like OSIDrive, and so on. However, strange that an "OpenSource Institute" uses non-OpenSource softare to host its site (Windows and IIS). It's not correct... I t
bb
A Daily Profanity at dailyprofanity.com on Mon 21st Dec 11am
For anyone who likes viz, and roger mellies profanisaurus. There's a website called amusing daily profanity which dishes up a humorous profanity every day via rss, twitter email and a few other ways. Rather rude words, but very funny in my opinion,
hambone
Blog entry for Wed 25th Nov 7pm on Wed 25th Nov 7pm
wtf i can't do geek 12. I don't know what to do. i want to kill myself becuz of this
haziman
Blog entry for Mon 9th Nov 4am on Mon 9th Nov 4am
for all geekos out there...
echmil
fuck you all!!!!!!!! on Sat 7th Nov 11pm
jag har tjock med tyngate tråkigt-.-
goldie
Blog entry for Tue 5th May 6am on Tue 5th May 6am
import javax.mail.*; import javax.mail.internet.*; import javax.activation.*; import java.io.*; import java.util.Properties; public class SENDMAIL { public void sendMail(String mailServer, String from, String to,
bb
Bubble Graph on Wed 11th Mar 12pm
I love this graph bubble graph http://www.osix.net:80/modules/folder/in dex.php?tid=28125&action=vf
ketan404
My online resume! on Mon 9th Mar 8am
It is here http://www.listoffreelancers.com/profile s/ketankulkarni Simple and clean design. I like this website. Ketan
macrocat
Blog entry for Sun 8th Mar 3pm on Sun 8th Mar 3pm
Another site with some challenges. Basically, I'm linking this to get a measly five points ;O. Hellbound Hackers
Nightscript
Parapsychology - Fri 19th Dec 5am on Fri 19th Dec 5am
Yes i'm crazy but heres what ive been thinking about and it seems more reasonable that a lot of reality. Note that this ties into parapsychology/psychokinesis research. Mind is not over matter. Thats the wrong state of thinking for sure. Look, this


     
Your Ad Here
 
Copyright Open Source Institute, 2006