TE
TechEcho
Home24h TopNewestBestAskShowJobs
GitHubTwitter
Home

TechEcho

A tech news platform built with Next.js, providing global tech news and discussions.

GitHubTwitter

Home

HomeNewestBestAskShowJobs

Resources

HackerNews APIOriginal HackerNewsNext.js

© 2025 TechEcho. All rights reserved.

1995 DOS game opensourced, needs hacker love

63 pointsby LaPingvinoalmost 14 years ago

3 comments

udoprogalmost 14 years ago
Just had to have a look, love the following tidbit from FILE.C<p><pre><code> char cryptkey[]={'M'-4,'i'-8,'n'-12,'d'-16,'y'-20,0}; LONG Encrypt(char far *data,char *key) { LONG i=0,keypos=0; while(data[i]!=0){ data[i++]^=key[keypos++]; if(key[keypos]==0) keypos=0; } return i; } </code></pre> Coupled with the following quote from the preface of Bruce Schneier's Applied Cryptography<p>"The simple-XOR algorithm is really an embarrassment; it’s nothing more than a Vigenère polyalphabetic cipher. It’s here only because of its prevalence in commercial software packages, at least those in the MS-DOS and Macintosh worlds [1502,1387]."
评论 #2623508 未加载
评论 #2623308 未加载
评论 #2623244 未加载
LaPingvinoalmost 14 years ago
Biggest question for me: is someone motivated enough to fork it and lead further development? Or should I create a mailing list and ask people to join there?
评论 #2623306 未加载
评论 #2623273 未加载
评论 #2623775 未加载
评论 #2623307 未加载
archgoonalmost 14 years ago
Does this currently compile in a DOS emulator using djgpp?
评论 #2623322 未加载