ID: a2017c RSA #6 Dec. 21, 2017, 1:52 a.m. No.848   ๐Ÿ—„๏ธ.is ๐Ÿ”—kun

Our task is simple. We are going to completely break the entire RSA cryptosystem!

And how are we going to do that?! With the VQC! Quick rundown to follow.

 

The main mathematical task that must be achieved to break RSA is to be able to factorize any integer instantly. The VQC is a promising way to do that.

 

What is the VQC?

The virtual quantum computer (VQC) is a grid made of infinite yet constructable sets that follow a known pattern. Like a quantum spreadsheet.

The grid is the superposition. The collapse of that superposition will be two input parameters, d and e which can be calculated easily for all integers, c, where c is the difference of two squares.

 

When the integers that are the difference of two squares are arranged into the grid and their corresponding properties are shown, a pattern emerges that shows calculation instead of searching is possible.

 

Legend

The map's legend is {e:n:d:x:a:b}, where d is the result of removing the largest square from c AKA the square root,

e is the remainder,

n is what you add to d to be exactly halfway between a and b,

and x is what you add to a to make d.

c is any number that is the difference of two squares, so odd numbers are included.

na and nb for any c can be found n places apart in the cell at (e,1).

 

Rules of the grid: global rules

Each cell of the grid (e,n) has infinite elements or ZERO elements.

Each cell with one value has infinite elements, since every element can make a new one.

By induction, a cell only needs one value to make infinite values, that's part of the power of this and is why it is a virtual quantum computer as a whole.

The t variable is what will allow you to walk across these infinite elements.

If a grid cell has elements, all elements are constructable from a finite set of root elements.

The grid is indexed using e, n, and t, where e is the rows, n is the columns, and t is the specific element in the cell-group.

Thus, only three variables are required to identify an element: e, n and t.

All products of odd numbers and all products of pairs of even numbers are the difference of two squares.

The x-intercept of the line that goes through the point containing the factors of c is (a + 1).

 

(1, 1) - the key

The values of a and b at 1,1 are related to the length of the longest side in right angled triangles.

The values here can be used to create the entire grid.

The values here determine the values of the rows to the left and right, which determine the values of the whole column.

 

Columns

Each cell at n=1 contains the roots of products in the column.

If c is a prime number, it will appear in one column exactly once.

If c is the product of two prime numbers that do not equal eachother, c will appear in two cells of one column.

All products (integers) c that are the sum of two squares appear (only) in columns where e=0,1,4,9,16,25โ€ฆ

All factors in a column are factors of the elements of the first cell in their column.

All Fermat primes (except) 3 appear in column one.

 

(e, 1)

If a number at position t has a factor s, then s is a factor at (t+s), (t+2s) and so on for a at (e,1).

Also, if a number at position t has a factor s at (e+1), then s is a factor at (s+1-t), (2s+1-t), etc for a at (e,1).

 

Rows

(1, n)

The cells in row one where n=1 have a relationship with the cells 2n to the right and 2n to the left.

Each "a" from the first row equals na because xx+e = 2na and na is half of that. That's BIG part of the KEY

Each element in a cell can be generated by moving up (t-1 = x-2) or down (t+1 = x+2). Other variables can be generated from x.

Every single factor of any value of a in the first row will be referred to as s.

 

Want an even better quick rundown? Read VQC's introduction.

>>19

 

Useful Equations and Notation

ab = c

dd + e = c

(d + n)(d + n)-(x + n)(x + n) = c

a + 2x + 2n = b

a = d - x

d = a + x

d = floor_sqrt(c)

e = c - (dd)

b = c / a

n = the difference between the square root d and the larger of the two squares

n = ((a + b) / 2) - d

d + n = number that is exactly halfway between a and b

d + n = i

x = d - a

x = (floor_sqrt(( (d+n)*(d+n) - c))) - n

x + n = j

f = e - 2d + 1

t = the variable that lets you traverse the infinite elements in for a given (e, n) that has values.

if (e is even) t = (x + 2) / 2

if (e is odd) t = (x + 1) / 2

ID: a2017c Dec. 21, 2017, 1:53 a.m. No.849   ๐Ÿ—„๏ธ.is ๐Ÿ”—kun

CodePost Guide

Because of the tendency for post links to disappear I will now be using Pastebin.

 

C#

BigInteger Square Root: pastebin.com/rz1SdACZ

Create Bitmap in: pastebin.com/hMTtJF6E

Generate Bitmap within original code: pastebin.com/JUdtehb4

Generate the large square for e and t: pastebin.com/nbjs2kz4

Original VQC code: pastebin.com/XFtcAcrz

Unity Script: pastebin.com/QgAXLQj3

Unity Script 2: pastebin.com/Y38nVWgT

 

Java

Create a Bitmap using the VQC Generator: pastebin.com/Dgu9aP1h

VQCGenerator: pastebin.com/VMRnkXFP

Traverse the VQC cells in real-time: anonfile.com/W44cofd6b6/VQCGUI.7z

 

NodeJS

BigInteger Library and Sqrt: pastebin.com/y8AXtFFr

 

Python

Create the VQC: pastebin.com/NZkjtnZL

3D VQC: pastebin.com/vdf8SpYt

3D VQC (v2): pastebin.com/wZM5Thzu

Generate genesis cell: pastebin.com/GKzcCpMF

''Generate positive AND negative genesis cells: pastebin.com/9ixjRyxt

Get A and B from C and N example: pastebin.com/s0SZ9BNF

VQC + t: pastebin.com/Lgufk0db

 

Rust

Check if a number is prime: huonw.github.io/primal/primal/fn.is_prime.html

Create Bitmap using the VQC Generator: play.rust-lang.org/?gist=c2446efeec452fe14e1ddd0d237f4173&version=stable

Create Bitmap using the VQC Generator [V2]: pastebin.com/zGSusyz5

Additional VQC code: play.rust-lang.org/?gist=50def916ad48400bc5d638fbf119ae85&version=stable

Generate the VQC: play.rust-lang.org/?gist=6b6beb372b6b931f1abd30642a35a80c&version=stable

 

Previous Threads

RSA #0, or the VQC thread: archive.fo/XmD7P

RSA #1: archive.fo/RgVko

RSA #2: archive.fo/fyzAu

RSA #3: archive.fo/uEgOb

RSA #4 (not finished, but inactive): >>>/cbts/94250

RSA General (#5): >>7

 

Videos and Links

I've added some videos to show the exact details and equations that we would use to hack RSA once we find the solution (and some introductions to ECC), but we have to finish this before we can get to any of that.

 

Integer Factorization of any arbitrary integer โ€” Part One

youtube.com/watch?v=9FeROMe0KBU

 

The RSA Encryption Algorithm (1 of 2: Computing an Example) (Very Simple)

youtube.com/watch?v=4zahvcJ9glg

 

Encryption and HUGE numbers - Numberphile

youtube.com/watch?v=M7kEpw1tn50

 

Public Key Cryptography: RSA Encryption Algorithm

youtube.com/watch?v=wXB-V_Keiu8

 

RSA-129 - Numberphile

youtube.com/watch?v=YQw124CtvO0

 

Elliptic Curve Cryptography Overview

youtube.com/watch?v=dCvB-mhkT0w

 

A (relatively easy to understand) primer on elliptic curve cryptography

arstechnica.com/information-technology/2013/10/a-relatively-easy-to-understand-primer-on-elliptic-curve-cryptography/2/

 

Elliptic Curve Cryptography: a gentle introduction

andrea.corbellini.name/2015/05/17/elliptic-curve-cryptography-a-gentle-introduction/

 

Elliptic Curve Point Addition

youtube.com/watch?v=XmygBPb7DPM

ID: a2017c Dec. 21, 2017, 11:01 p.m. No.945   ๐Ÿ—„๏ธ.is ๐Ÿ”—kun

>>944

Checked. For some reason I keep finding myself put in the position of being required to bake things. Over on /pol/ the mods repeatedly censored people who wanted to discuss the curious case of Sholom Rubashkin and why he deserved a commutation. Given they are constantly being censored, I need to make a thread in a non-comped board.

ID: a2017c Dec. 21, 2017, 11:29 p.m. No.951   ๐Ÿ—„๏ธ.is ๐Ÿ”—kun   >>952 >>954

>>950

Interesting, but cracking RSA doesn't crack Bitcoin. It's based on ECC. However, cracking RSA would make them lose a lot of confidence in crypto and compromise millions of passwords-Not that I care.

 

So, I don't expect Bitcoin to die when we reach the solution, but it will be a shitstorm.

ID: a2017c Dec. 24, 2017, 1:26 a.m. No.1139   ๐Ÿ—„๏ธ.is ๐Ÿ”—kun   >>1140

>>1137

>>1138

 

That's quite interesting. Video games don't have to make sense to be interesting, quite like Indie Games. Anyway, I'll try to contribute to the new line of maths tomorrow.

 

I was researching a man named Sholom Rubashkin. He was running a meth lab in Iowa and imported over 400 illegal immigrants which tore the city apart when ICE raided it, basically destroying the city, or at least damaging it beyond repair. The meth lab's cover story was that it was a kosher meat plant, which it sort of was, so it was a bit of a front-end business with a racket on the side. Where it gets even sadder is the fact that the PETA people said that the animals were tortured (which makes it not even kosher according to scripture, ironically). One said "the esophagi were ripped out while the animals were still alive and conscious." Moreover, he didn't even bother paying his employees some of the time and was also involved in bank fraud, money laundering, wire fraud, and lots of financial fraud in general. One of the biggest takeaways from this is how sad and disgusting Israel and their control of congress really is. They didn't care about what he did to the animals, what he did to the illegal alien employees, how he destroyed an Iowa town called Postville, how he defrauded many financial institutions, etc.

 

They didn't care. They just wanted him free. Bipartisan congress support for an "unjust sentence". Anything for the (((chosenite))) tribe.

Should have been life.

 

I could go on.

 

So, when Trump commuted this guy's sentence, meaning he will be free soon, it tore me apart.

 

But I'm feeling a lot better now that the storm is finally happening.

ID: a2017c Dec. 24, 2017, 1:36 a.m. No.1142   ๐Ÿ—„๏ธ.is ๐Ÿ”—kun   >>1143 >>1145

>>1140

Read it yourself. Watch the documentaries on him. Sounds nice enough eh?

 

Until you read the FBI reports on the bank fraud, meth lab and animal abuse.

 

No, you'll know why I felt that way if you take the time to actually read into it.

ID: a2017c Dec. 24, 2017, 1:47 a.m. No.1148   ๐Ÿ—„๏ธ.is ๐Ÿ”—kun   >>1149

>>1147

>>1146

Yup. Every time I fall for the "regular Jews are okay" I meet one and they treat me like a disgusting rat. If that is really how it's going to go I'd be so happy.. Because this guy does not deserve to be free. I didn't even mention how he treated the immigrants or how they completely destroy any discussion of this now with muh holocaust and muh nazis.

Anonymous ID: a2017c Dec. 25, 2017, 12:20 a.m. No.1211   ๐Ÿ—„๏ธ.is ๐Ÿ”—kun   >>1213

>>1208

Storm is here already. This is Q's first and last picture.

 

Note the dates, the weather, and who they were fighting. Pics related.

 

en.wikipedia.org/wiki/George_Washington%27s_crossing_of_the_Delaware_River

Anonymous ID: a2017c Dec. 26, 2017, 2:16 p.m. No.1336   ๐Ÿ—„๏ธ.is ๐Ÿ”—kun

>>1334

>>1335

When I followed the directions:

 

set e to 0

set x to 2c

 

for c = 145

the cell I found had c as a instead of c^2

 

(e, n, t) = (0, 290, 146)

{0:290:435:290:145:1305}

 

now, the way I found this cell was by searching for cells that follow the rules of the VQC and the equations

ID: a2017c Dec. 26, 2017, 2:32 p.m. No.1337   ๐Ÿ—„๏ธ.is ๐Ÿ”—kun

The element that I was looking for is (e, n, t) = (0, 288, 61).

The t value might be off, haven't actually mastered that in my program.

 

{0:288:145:120:25:841}

841 = 29^2

25 = 5^2

21025 = 145^2

Anonymous ID: a2017c Dec. 28, 2017, 8:06 p.m. No.1519   ๐Ÿ—„๏ธ.is ๐Ÿ”—kun   >>1523

>>1517

It's actually quite easy to encrypt for a group.

You just need to share a password with each recipient using asymm crypto. (Because there's no way to secretly send a shared key without asymm crypto over the internet.)

 

It wouldn't work with a large amount of recipients, but that's not necessary.

You wouldn't trust a large group of people with sensitive information.

Anonymous ID: a2017c Dec. 28, 2017, 8:29 p.m. No.1524   ๐Ÿ—„๏ธ.is ๐Ÿ”—kun

>>1523

One person (admin of the chat) has authority over it all. Only would work (or be trustworthy) for a group of people you trust. I chose IRC because there are many servers, and asymmetric crypto allows you to use encryption regardless of who "Eve" is.

I've already written special headers, and sorting messages into chunks and such.

ID: a2017c Dec. 28, 2017, 10:16 p.m. No.1546   ๐Ÿ—„๏ธ.is ๐Ÿ”—kun   >>1548

>>1535

Just noticed your comment about redpilling your family. Sorry I called you a cunt.

 

What keeps me up even though a good portion of my sheeple side of the family thinks I am a racist (which isn't even insulting to a polack) is that they all failed tremendously in life.. but I haven't.. yet. So I've got the high ground so far.

 

Dunno about your situation. If you really care about changing their minds (I do, I will not let my grandmother go believing the bullshit lies jews perpetrate) you should look into memetics. It's a science of its own, basically an evolved version of propaganda. My view is that propaganda isn't bad if you are telling people the truth.

Anonymous ID: a2017c Dec. 28, 2017, 11:03 p.m. No.1558   ๐Ÿ—„๏ธ.is ๐Ÿ”—kun

>>1554

fcit.usf.edu/holocaust/people/DocPropa.htm

hitler.org/writings/Mein_Kampf/mkv1ch06.html

en.wikiquote.org/wiki/Mein_Kampf#Chapter_6_-_War_Propaganda

 

How to make memes from literally Hitler himself.

Anonymous ID: a2017c Dec. 28, 2017, 11:40 p.m. No.1574   ๐Ÿ—„๏ธ.is ๐Ÿ”—kun   >>1575 >>1576 >>1601

>>1571

You have Linux?

 

Download Mono develop: mono-project.com/download/

 

Then write the code in file named TheEnd.cs, add this method (if someone could inform me how to make code look good on 8ch that would be good)

 

public static void Main(string[] args) {

CreateTheEnd();

Output();

 

}

 

And open terminal in the directory and type mcs TheEnd.cs

Then mono TheEnd.exe

ID: a2017c Dec. 29, 2017, 2:08 a.m. No.1599   ๐Ÿ—„๏ธ.is ๐Ÿ”—kun   >>1600

He didn't reply to himself - his alter ego slipped up! Muahahaha!

 

If you all somehow reach post limit while I'm asleep, bake it however you want. Not people here have already read what I have right now.

ID: a2017c Dec. 30, 2017, 12:02 a.m. No.1688   ๐Ÿ—„๏ธ.is ๐Ÿ”—kun

>>1684

I'm not like you. I can't synthesize different areas of maths. I don't know what parabola's and roots are. I haven't had to brush up on them for this.

 

>>1685

Shame about Baruch. I guess they were right about him. I was in contact with him too.