Apolyton Archive  |  Preserved copy of the Apolyton Civilization Site and its forums as they stood in September 2005. Read-only; nothing here can be posted to or replied to.  |  Forum index |  About this archive |  The 1998–2001 UBB forums
Today on Apolyton WARDELL INTERVIEW PROMO A.C.S. HISTORY CHAPTER 4 GET CIV4 /w FREE PLUS! A.C.S. PHOTO GALLERY GET A.O.M. V1.1
Apolyton Civilization Forums
main| civ2| civ3| civ4| smac| ctp2| ron| moo3| galciv| galciv2| alt| about|
ApolytonPLUS | register | search | faq | new posts | pm (-/-) | upload | members
hall of fame new! | civgroups | civgroups news | interviews | the column | radio | chat | directory | news | store | PLUS
Apolyton Civilization Forums : Powered by vBulletin version 2.0.3 Apolyton Civilization Forums > Miscellaneous > Archive > AC-Democracy Team Game-Archive > ACDG The Human Hive > Attention Department of Misinformation
Show a Printable Version | Email This Page to Someone! | Receive updates to this thread | Report this to Apolyton news!

bottom of page
  
Author
Thread    < Last Thread     Next Thread > Post New Thread     Post A Reply
Vev is offline Vev
King
I am so out of touch
Nov 2000
time: 15:28
  Old Post 26-05-2003 03:46
Edit/Delete Message Reply w/Quote
#1 Report this post to a moderator
Attention Department of Misinformation Full PM-box? Change here!

Since we are having so much fun keeping a secret of the knowledge we know their code, I suggest we do something more fun. We create a simple code purely used to spread "the truth", in other words lies, rumors and more lies.

A really simple code could be a 5bit alphabet.
1-26 = alphabet
27 = space
28 = period
29 = comma
30 = ?
31 = '

'the hive is glorious' would translate to

10100 01000 00101 11011
01000 01001 10110 00101 11011
01001 10011 11011
00111 01100 01111 10010 01001 01111 10101 10011

I've broken it up to make visual decipher a bit easier.

Rumors we could spread are like the how frustrated we are with the CyCon's code, Chairman's desire to build a personal themepark, false city names ...

Voltaire is offline Voltaire
King
Calgary, Alberta
Aug 2001
time: 22:28
  Old Post 26-05-2003 03:51
Edit/Delete Message Reply w/Quote
#2 Report this post to a moderator
Support Apolyton, buy Civilization: The Boardgame

Static Universe is offline Static Universe
Prince

Dec 2002
time: 23:28
  Old Post 26-05-2003 04:00
Edit/Delete Message Reply w/Quote
#3 Report this post to a moderator
Re: Attention Department of Misinformation Increase Your PM Length

quote:
Originally posted by Vev

Chairman's desire to build a personal themepark


That's not true?

I think we need to get a handle on the code schemes. We have three competing cyphers and have yet to post one coded message. Perhaps we should prioritize one code and go with that first. Anyone want to create a poll?

Haon is offline Haon
Warlord
Japan, but I just live here.
Oct 2001
time: 05:28
  Old Post 26-05-2003 04:16 Visit Haon's homepage!
Edit/Delete Message Reply w/Quote
#4 Report this post to a moderator
Support Apolyton buy from Amazon

hate coding, hate numbers!!! Haon Smash!

Excel spreadsheet please.

Vev is offline Vev
King
I am so out of touch
Nov 2000
time: 15:28
  Old Post 26-05-2003 06:40
Edit/Delete Message Reply w/Quote
#5 Report this post to a moderator
Increase Your PM Length

Here is the new encoding files

Pravda new encoding

They are NOT secure. It uses 7bit alphabet, (actually it removes the most significant bit), and is easy to break, (once you know what it does).

Use this code the spread "The Truth".

It is already compiled and run in under command prompt. It takes in 'read.txt' and outputs 'read2.txt'
to decode, it takes in 'read2.txt' and outputs 'read3.txt'.

Source code to compile on other platforms

/*
* for some reason %b isn't supported
*/

#include
#include

int main()
{
FILE *inFile;
FILE *outFile;
char ch;

inFile=fopen("read.txt", "r");
if (inFile==NULL)
{
printf ("error opening file.\n");
exit(0);
}

outFile=fopen("read2.txt", "w");
if (outFile==NULL)
{
printf ("error opening file.\n");
exit(0);
}

fprintf(outFile,"Starting Encrypted Transmission.\n");
while ( (ch=fgetc(inFile)) != EOF)
{
fprintf(outFile,"%i",((ch >> 6)&1));
fprintf(outFile,"%i",((ch >> 5)&1));
fprintf(outFile,"%i",((ch >> 4)&1));
fprintf(outFile,"%i",((ch >> 3)&1));
fprintf(outFile,"%i",((ch >> 2)&1));
fprintf(outFile,"%i",((ch >> 1)&1));
fprintf(outFile,"%i",((ch)&1));
}

fprintf(outFile,"\nTransmission Complete.\n");

return (0);
}





/*
* for some reason %b isn't supported
*/

#include
#include

int main()
{
FILE *inFile;
FILE *outFile;
char ch;
char chout;
int counter;

inFile=fopen("read2.txt", "r");
if (inFile==NULL)
{
printf ("error opening file.\n");
exit(0);
}

outFile=fopen("read3.txt", "w");
if (outFile==NULL)
{
printf ("error opening file.\n");
exit(0);
}

while ( (ch=fgetc(inFile)) != '\n') {}

counter=7;
chout=0;

fprintf(outFile,"Decrypting Transmission.\n");
while ( (ch=fgetc(inFile)) != EOF)
{
counter--;
if (ch == '1')
chout += (1 << counter);

if (counter == 0)
{
fprintf(outFile,"%c",chout);
counter=7;
chout=0;
}
}

fprintf(outFile,"\nTransmission Decrypted.\n");

return (0);
}

Comrade Tassadar is offline Comrade Tassadar
Settler

Aug 2005
time: 05:28
  Old Post 26-05-2003 07:42 Visit Comrade Tassadar's homepage!
Edit/Delete Message Reply w/Quote
#6 Report this post to a moderator
Re: Attention Department of Misinformation Browse Apolyton AD-FREE

I have an idea.

Why doesnt someone, uh, "leak" this code out to them? It would be SOOO much fun.

Vev is offline Vev
King
I am so out of touch
Nov 2000
time: 15:28
  Old Post 26-05-2003 07:54
Edit/Delete Message Reply w/Quote
#7 Report this post to a moderator
Support Apolyton, buy Civilization III: Complete

well not the code but provide them a paritial plaintext translation

Because the code may be reused for other ciphers

Comrade Tassadar is offline Comrade Tassadar
Settler

Aug 2005
time: 05:28
  Old Post 26-05-2003 08:24 Visit Comrade Tassadar's homepage!
Edit/Delete Message Reply w/Quote
#8 Report this post to a moderator
Suffering from ads?

quote:
Originally posted by Vev
well not the code but provide them a paritial plaintext translation

Because the code may be reused for other ciphers


Please come online.

Gnool is offline Gnool
Warlord
Australia
Jun 2002
time: 15:28
  Old Post 26-05-2003 11:42 Visit Gnool's homepage!
Edit/Delete Message Reply w/Quote
#9 Report this post to a moderator
Full PM-box? Change here!

I have an idea: I propose we use the 5-bit code for now and when they break it we use the code Vev posted with the source code all over it (could someone explain to me how that one works cuz I don't know C++ )

Vev is offline Vev
King
I am so out of touch
Nov 2000
time: 15:28
  Old Post 26-05-2003 11:45
Edit/Delete Message Reply w/Quote
#10 Report this post to a moderator
Help yourself to an AD-FREE life

It is C actually

It removes the most significant bit from a binary message so using only the ascii range 0-127.

They could do frequency analysis and hopefully realise something odd is going on.


Micha's code will be used for the beefed up security.

Last edited by Vev on 26-05-2003 at 11:59

Googlie is offline Googlie
Emperor
Commanding Officer, CRYPTEIA
Apr 1999
time: 21:28
  Old Post 03-06-2003 19:11 Visit Googlie's homepage!
Edit/Delete Message Reply w/Quote
#11 Report this post to a moderator
Support Apolyton, buy Alpha Centauri

On a different tack, I was victim in a PBEM with Alinestra Covelia (who played the Hive, of course) after I had infiltration.

She renamed her units to better ones, thus causing me to postpone attacks twice when I thought she had superior defense and weaponry

eg her synthmetal sentinals (1-2-1) she renamed 3-res impact garrisons (4-3res-1) and when I was browsing her production in the F4 screen got completely sucked in and held off mounting an attack.

Later her puny missile noodle interceptors (<6> -1 -8 SAM ) were renamed R-Bolt Interceptors (<12>r-1-8 SAM) . Again, I waited maybe 30 turns before mounting an attack by air on her bases.

Neither time did I think to actually closely examine the units in a base to see what was there, just taking at face value what seemed to be there (and they were sufficiently esoteric that I never did check the techs she had either)

It would be important not to go overboard (eg call then Shard when space is still decades away) but could really sow misinformation and confusion

(and I have - and will not - communicate this idea to any other faction - it just seems such a ...... Hive ..... thing to do)

G.

Jamski is offline Jamski
Deity
lol ED&D is officially full PvP LOL
May 2002
time: 05:28
  Old Post 03-06-2003 19:47
Edit/Delete Message Reply w/Quote
#12 Report this post to a moderator
Put an end to popups!

* Jamski loves Googlie, really he does

-Jam

Vev is offline Vev
King
I am so out of touch
Nov 2000
time: 15:28
  Old Post 04-06-2003 03:26
Edit/Delete Message Reply w/Quote
#13 Report this post to a moderator
Put an end to popups!

What a glorious use of the Truth!

  < Last Thread     Next Thread > Post New Thread     Post A Reply
All times are GMT. The time now is 05:28.
Apolyton Time is 00:28.
    top of page
Rate This Thread:
archivepost
Forum Jump:
Forum Rules:
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts
HTML code is ON
vB code is ON
Smilies are ON
[IMG] code is ON
 




Contact Us - Apolyton Civilization Site - Support Us!

Building a better Apolyton through better information. Click here and take our poll!
Non-US visitors, click here!

Powered by: vBulletin Version 2.0.3
Copyright ©2000, 2001, Jelsoft Enterprises Limited.

Page generated in 0.0463 seconds (89.50% PHP - 10.50% MySQL) with 32 queries
Page Loading Time:

Support Apolyton: Amazon USA | Amazon UK | Amazon DE | Amazon FR |
Support Apolyton and get FREE PLUS, Buy from Chips&Bits: Galactic Civilizations | Galactic Civilizations: Deluxe Edition | Call to Power 2 | Civilization: The Boardgame | GURPS/ Alpha Centauri | Alpha Centauri | Civilization IV | Civilization III: Complete |


Front Page | Civilization IV | Civilization III | Civilization II | Call to Power II | Alpha Centauri | Master of Orion III
Rise of Nations | Galactic Civilizations | Galactic Civilizations II | Misc
Alt.Civs | Civ I | C:CtP I | About | News | Directory | Apolyton Store | Forums | Chat | Columns | Interviews | Newsletter
Scenario League | CSC | Clash of Civs | Spanish Site | CtP Maps | Cradle of Civ | WesW's Ctp1/2 Site | Civ3 Haven

apolyton.net | apolyton.com | civilization2.net | civilization3.net | civilization4.net | civilizationiv.info | calltopower.net | galciv.net | galciv2.net | moo3.net