Jump to content
IGNORED

/ 6 9 9 7 4 2 / 6 2 8 3 1 5 / 7 1 7 2 2 8 / 9 3 6 5 5 7 / 8 1 3 3 8 6 / 5 1 9 2 2 5 /


Recommended Posts

Guest jasondonervan

"Well, there doesn't seem to be any pattern yet, but if I take this one and move it here, and I move these over here.. hello! It almost looks like an arrow!"

 

"Hey, look: it's pointing right at this forum."

 

"Let's get out of here!"

 

tumblr_mdlbyz2Mqi1rw41szo1_500.png

Edited by jasondonervan
Guest Gravity
  On 4/24/2013 at 7:35 PM, goDel said:

The only pattern I see is one with blue eyes and a tight dress.

 

 

  Reveal hidden contents

 

I looked on the twoism forum for the first time to guage the levels of hysteria and there are some people there who think that there will be a BoC transmission saying six numbers on the advert breaks between The 10 O'Clock Show on Channel 4 tonight despite having no evidence that it will happen. They want to believe and they're all going to watch it.

it's the codex necro, unleash the hordes of our mighty lord satan!

  On 2/26/2015 at 9:39 AM, RupturedSouls said:

This drugs makes me feel like I'm on song!

  On 9/1/2014 at 5:50 PM, StephenG said:

I'm hardly a closed minded nun. Remember, I'm on a fucking IDM forum.... an IDM forum.. Think about that for a second before claiming people are closed minded nuns.

If this is the end of it all I'm going to have a good laugh about it.

Some songs I made with my fingers and electronics. In the process of making some more. Hopefully.

 

  Reveal hidden contents

It may be possible today is slow because the other two transmissions of 6# already went out yesterday/Monday, but no one was looking in the right place.

So now it's just a waiting game until someone picks up that bizarre piece of trash sitting outside the louvre.

Well BOC has gotten me coding for fun :D

 

My simple one-time pad WIP C++.


#include "stdafx.h"
#include <iostream>
#include <string>

using namespace std; 

int _tmain(int argc, _TCHAR* argv[])
{
	char message[30]; 
	char key[30];
	char encrypt[30]; 
	char final[30]; 
	char choices; 

	cout<<"One-Time Pad v1.1"<<endl<<"(Caps Lock must be on)"<<endl<<endl; 
	cout<<"Hit C to Crack a message or D to decrypt a message."<<endl; 
	cin>>choices; 
	cin.ignore(); 
	
	switch(choices)
	{
	case 'C':
		cout<<"Enter a message :"<<endl;
			cin.getline(message,37); 
			
		cout<<"Enter a key :"<<endl;
			cin.getline(key,37); 
	
			for(int i='A';i<='Z';i++)
				{
					for(int x=0;x<strlen(message);x++)
						{
							encrypt[x]=(message[x]+key[x])%26;
							final[x]=encrypt[x]+65; 
						}
				}

	cout<<"Encrypted word is : ";
	for(int i=0;i<strlen(message);i++){
		cout<<final[i];
	}
		cout<<endl; 
			break;
	case 'D': 
		cout<<"Enter cypher :"<<endl;
			cin.getline(encrypt,37); 

		cout<<"Enter a key :"<<endl;
			cin.getline(key,37); 
	
			//for(int i='A';i<='Z';i++)
			//	{
					for(size_t x=0;x<strlen(encrypt);x++)
						{
							if(key[x]<46)
								key[x]+26;
							message[x]=(encrypt[x]-key[x])%26;
							final[x]=message[x]+65; 
							
							
						}
			//	}
		

	cout<<"Decrypted message is : ";
	for(size_t i=0;i<strlen(encrypt);i++){
		cout<<final[i];
	}
		cout<<endl;
			break; 
		}

	return 0;
}
Edited by ZiggomaticV17
Guest liquiday
  On 4/25/2013 at 12:38 AM, ZiggomaticV17 said:

 

Well BOC has gotten me coding for fun :D

 

My simple one-time pad WIP C++.


#include "stdafx.h"
#include <iostream>
#include <string>

using namespace std; 

int _tmain(int argc, _TCHAR* argv[])
{
	char message[30]; 
	char key[30];
	char encrypt[30]; 
	char final[30]; 
	char choices; 

	cout<<"One-Time Pad v1.1"<<endl<<"(Caps Lock must be on)"<<endl<<endl; 
	cout<<"Hit C to Crack a message or D to decrypt a message."<<endl; 
	cin>>choices; 
	cin.ignore(); 
	
	switch(choices)
	{
	case 'C':
		cout<<"Enter a message :"<<endl;
			cin.getline(message,37); 
			
		cout<<"Enter a key :"<<endl;
			cin.getline(key,37); 
	
			for(int i='A';i<='Z';i++)
				{
					for(int x=0;x<strlen(message);x++)
						{
							encrypt[x]=(message[x]+key[x])%26;
							final[x]=encrypt[x]+65; 
						}
				}

	cout<<"Encrypted word is : ";
	for(int i=0;i<strlen(message);i++){
		cout<<final[i];
	}
		cout<<endl; 
			break;
	case 'D': 
		cout<<"Enter cypher :"<<endl;
			cin.getline(encrypt,37); 

		cout<<"Enter a key :"<<endl;
			cin.getline(key,37); 
	
			//for(int i='A';i<='Z';i++)
			//	{
					for(size_t x=0;x<strlen(encrypt);x++)
						{
							if(key[x]<46)
								key[x]+26;
							message[x]=(encrypt[x]-key[x])%26;
							final[x]=message[x]+65; 
							
							
						}
			//	}
		

	cout<<"Decrypted message is : ";
	for(size_t i=0;i<strlen(encrypt);i++){
		cout<<final[i];
	}
		cout<<endl;
			break; 
		}

	return 0;
}

cout<<"No new album in 2013"<<endl;

Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×