Return Styles: Pseud0ch, Terminal, Valhalla, NES, Geocities, Blue Moon. Entire thread

quality thread

Name: Anonymous 2013-01-10 16:07

i believe in you guys

Name: Anonymous 2013-01-10 23:06

NO EXCEPTIONS

Name: Anonymous 2013-01-11 5:58

test

Name: tales from the crypt 2013-01-11 6:20

giving octave vectorized encryption capabilities > (the xor function is a bit useless...)


function nList = generate_mXor()
bList(1:8) = false;
nList(1,:) = bList;
for (iter=2:256)
  nList(iter,:) = nList(iter-1,:);
  nList(iter,8) = nList(iter,8) == false;
  xIter=8;
  while(nList(iter, xIter)==false && xIter>1)
    xIter--;
    nList(iter,xIter) = nList(iter, xIter) == false;
    endwhile;
  endfor;
endfunction;


function xWalk = xornBuilder()
nList = generate_mXor();
cList = [1:256];
cList = cList(ones(1,256), :);
aList = cList(:);
cList = cList';
bList = cList(:);
xList = nList(aList,:) == nList(bList,:);
jWalk = [128,64,32,16,8,4,2,1];
jWalk = jWalk(ones(1,65536),:);
xWalk = sum(xList .* jWalk,2) .+ 1;
endfunction;


you're welcome! =)

Name: Anonymous 2013-01-11 7:07

Terrible!

Name: Anonymous 2013-01-11 7:45

Ah, almost forgot usage.. it's only an 8-bit version, with input values 0-255 mapped to 1-256 (to suit octaves arrays... and other stuff ;) and yeah it works as an xor-not lookup (table? / vector)

Xorn = xornBuilder;
outP = Xorn((dataX2 .- 1) .* 256 .+ kS2);

does 11mb in under 7.5sec [key and data in memory (not tested accurately ! will be less =) -> output on file]

Name: Anonymous 2013-01-11 7:50

dasdsa

Name: Anonymous 2013-01-11 9:09

Ah yep, etime of only 1.008 sec for just the plain old xor-not of 11.3 mb data in memory ^^

Name: Anonymous 2013-01-11 9:10

>>8
So... setting every byte to 255?

Name: Anonymous 2013-01-11 9:40


░░░░░░▄█████▄░░░░░░░░
░░░░▄█▀▀░░░░▀█▄░░░░░░
░░░▄█▄▄▄▄░▄▄▄▄█░░░░░░
░░░██████▀██████░░░░░
░░██░░▀░▄██▀▀░░█░░░░░
░░░▀█░░░░░░░░░█▀░░░░░
░░░▄▄█▄▄▄▄░▄▄▄█▄▄░░░░
░░░██████▄░▄██████░░░
░░░███████▀▀██████▄░░
░░░░████████████▀▀▀░░
░░░▄████████████▄░░░░
░▄███████████████▄░░░
░▀█████████████████▄░
░▄██████████████████▄
███████▀▀▀▀▀▀▀███████
▀██████░░░░░░▄███████
░██████░░░░░███████▀░
░░█████░░░░░████▀░░░░

Name: Anonymous 2013-01-11 9:55

>>10 argh, they've come to employ me! Noooooooo

>>9 Well yeah literally but no, i xor(not) the data with a key, though it takes a lot longer to generate the key than xor(not) it with the data [~20 sec / 46640 x 256 byte blocks generated]

Name: Anonymous 2013-01-11 10:21

[b][i][u]OPPAN GANGBANG STYLE

Name: Anonymous 2013-01-11 10:22

[/u][/i][/b]

Name: Anonymous 2013-01-11 10:51

LEEEEEEEEELLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLl
>LE GANGNIAM STYLE!

Name: Anonymous 2013-01-11 20:31

>>5 lol yeah it is kinda hey, but it only needs to run once...
For my next trick, a Pseudo-PRNG (Warning : not Xor-only safe..)


function XData = keyGen()
getBData = [1:256];
getRData = floor( rand(256,1) * 256 );
XData = [];
for(iter=1:256)
  shortPut = mod( getRData(iter), 257 - (iter))+1;
  XData(iter) = getBData(shortPut);
  getBData(shortPut:end-1) = getBData(shortPut+1:end);
  endfor;
endfunction;

function kB = keyBlock()
for(iter = 1:9)
  kB(iter,:) = keyGen();
  endfor;
endfunction;

function kB = keySched(kB)
kB(3,:) = kB(1, kB(3,:));
kB(4,:) = kB(2, kB(4, kB(3, :)));
kB(7,:) = kB(5, kB(7,:));
kB(8,:) = kB(6, kB(8, kB(7, :)));
kB(9,:) = kB(4, kB(9, kB(8,:)));
endfunction;

Name: Anonymous 2013-01-11 21:00

Wonder if /prog/ recognises this...? I posted a similar system in C once.. =) It's not a particularly good PRNG, but it has other 'special' properties ;) namely it is a Pseudo-Random-Factorial-Set-Generator, used for the Jar/Cell construction =D

Name: Anonymous 2013-01-11 22:51

>>12 oh, it's just psy.... lol i thought it was supposed to be all sinister, men-in-black like or something..

And anyhow, people shouldn't freak out so much.. I mean shit, people have Assault rifles for self-defence, nations have nuclear weapons and black-op's, secret police and nerve gas, and you're looking at me all suspicious-like because i can send a bloody secret message if the need arises?

Name: Anonymous 2013-01-11 22:52

>>16
Fuck off, imbecile.

Name: Anonymous 2013-01-11 22:54

>>18 you are an internet champion

Name: Anonymous 2013-01-11 23:30

yadda yadda yadda, guns don't kill people, but many people with guns are pretty fookin good at it... Plus people are lazy, if they actually had to expend some effort to kill something, rather than just 'click, dead.', it might not be such a common occurence..

Name: Anonymous 2013-01-11 23:30

>>19 you are a luke yallop

Name: Anonymous 2013-01-11 23:58

Fucking pedos.

Name: Anonymous 2013-01-12 0:24

Similar story for nukes, one guy has a nuke, then everybody else needs them in order to reach the stalemate scenario and not get wiped off the face of the earth... but some retard will still end up using them regardless.. So I blame all the retards that didn't disarm, causing that situation to unfold.
Cryptography itself is not a weapon, the grandest algorithm in itself couldn't manage to harm a fly, even with ten people operating it.

Name: Anonymous 2013-01-12 0:53

And anyway, shouldn't you blame all these people misusing their cameras for much of the porn out there?

Name: Anonymous 2013-01-12 1:15

perhaps even Along with society/culture itself...
I've seen places on tv, remote tribes where everyone basically just walks around pretty much naked anyway. I'd doubt that they have any concept of porn, let alone any real trouble with modern sicknesses of the mind. Anyone who did do something sufficiently evil would most likely have it beaten out of them with a large stick, and that would be the end of it =)

Name: Anonymous 2013-01-12 2:01

I'm a real outcast, Luke. I don't fake it. You don't know how much hate I am capable of. Yes that's sad, but I don't ask anybody to pity me.
I hate your ... retarded =D ... heehee syntax =D
Why did you have to create more than a hundred threads about panic attacks and other teenager's problems on what used to be a place I enjoyed? Do I care? Do I visit a programming board to hear about that shit?
And the fucking Touhous, and the pedophilia (well, you're a kid yourself, but still)... The constant flow of shitpost I had to cope with.
You've got 142 friends on your fucking facebook account.
The gorgeous australian sun, the beach, your stupid surfer outfits... Long hair, sun tanning, nigger lips. You don't look too bright, sure, but most of the retarded girls in your neighborhood would find you cute. Your family seems to be normally wealthy. So, what's your fucking problem, spoiled little western brat?

Name: Anonymous 2013-01-12 2:12

Even redditors cringe at your fucking syntax. -5 karma for 10 posts.

Name: Anonymous 2013-01-12 2:31

Not a single nigger friend. Not a single sandnigger friend. You're a self-righteous antiracist, but you're not exactly from the ghetto. Fucking 100% WASP neighborhood in Albany.

Name: Anonymous 2013-01-12 2:43

Another post without proper punctuation, another emoticon, another xanax or weeaboo thread, anything non-programming  related that looks like you and you're doxed, dude.

Name: Anonymous 2013-01-12 3:13

what the fuck is going on with this thread

Name: Anonymous 2013-01-12 3:33

>>30
A neurotypical with tons of hot blonde chicks in his facebook and a loving family has been pissing off a lonely dregs of society whose only joy is computing for too long.

Name: Anonymous 2013-01-12 3:37

>>22
What the fuck did I do?

Name: Anonymous 2013-01-12 4:56

>>32
Nothing. Enjoy your fantasies.

Name: Anonymous 2013-01-12 6:59

>>33
Salam, Towelhead!

Name: Anonymous 2013-01-12 7:00

>>26-29 Guess I better be pretty quiet and behave now then.
Don't suppose someone could explain the 'WASP' term? I think i can guess the 'doxed' one, so i won't ask.

Name: Anonymous 2013-01-12 8:07

>>26 That is kind of sad about the hate. The bit about faking being an outcast kind of made me smile though. I don't really think it right to argue much of the rest of that post, though as always understanding is finite. Sorry if i got on your nerves in particular, but this is 4chan / you are Anonymous, and it is hard to see the forest for the trees.
Might i ask your name/age/ethnicity/location ?

Name: Steve-o? (generic?) 2013-01-12 8:49

Not that i don't care if you are an outcast, but it doesn't phase me. There are a few other sayings/proverbs that come to mind, but i won't just blurt them out. I guess i'm a bit overdue for some critical feedback anyway, but really it is the idea's that need the criticism if you could.

Name: Anonymous 2013-01-12 9:04

like this one, for instance. 'A problem shared is a problem halved'. But might i ask, what is a problem borrowed? And yes, its only fair that you question that motive.

Name: Anonymous 2013-01-12 9:53

...hmm, kind of demanding really. Not to mention that i'm being asked/told to fit in by an outcast..? kind of hypocritical isn't it?
Anyway, I was actually going to complain about the prison system, and before that continue with the 'tales from the crypt', but yeah i dunno now... See where this here goes first.

Name: Anonymous 2013-01-12 13:23

>>35-39
Just try to be a little less recognizable. Please.

Newer Posts
Don't change these.
Name: Email:
Entire Thread Thread List