-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathWeakPRG.cs
56 lines (52 loc) · 890 Bytes
/
WeakPRG.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
using System;
namespace JP.CryptoClass
{
static class WeakPRG
{
const long N = 295075153L;
static void Main(string[] args)
{
var outputs = new long[]
{
210205973L,
22795300L,
58776750L,
121262470L,
264731963L,
140842553L,
242590528L,
195244728L,
86752752L
};
long x, y;
int
i,
n = outputs.Length;
for(long x0 = 0L; x0 < N; ++x0)
{
x = x0;
y = x ^ outputs[0];
for(i = 1; i < n; ++i)
{
Iterate(ref x, ref y);
if((x ^ y) != outputs[i])
break;
}
if(i >= n) // for loop did complete.
{
Iterate(ref x, ref y);
Console.WriteLine(x ^ y);
Console.ReadKey(true);
return;
}
}
Console.WriteLine("Failed!");
Console.ReadKey(true);
}
static void Iterate(ref long x, ref long y)
{
x = (2L * x + 5L) % N;
y = (3L * y + 7L) % N;
}
}
}