]> AND Private Git Repository - prng_gpu.git/blob - reponse.tex
Logo AND Algorithmique Numérique Distribuée

Private GIT Repository
0ffb36a17bc556dcaade1073e13fa46a0ba08e52
[prng_gpu.git] / reponse.tex
1 \documentclass{article}
2 \usepackage{color}
3
4 \begin{document}
5 \section{Editor}
6
7 \bigskip
8 \textit{As the reviewers point out, the paper is well written, is interesting, but there are some major concerns about both the practical aspects of the paper, as well as more theoretical aspects.  While the paper has only been reviewed by two reviewers, their concerns are enough to recommend that the author consider them carefully and then resubmit this paper as a new paper.}
9
10 \bigskip
11 \textit{Most of the issues raised are related to cryptography, and not to the acceleration work on a GPU.  The issue may be that during their preparation of this paper the authors were too focused on the acceleration work, and did not spend enough time being precise about the cryptography discussion.  The two reviewers are experts on cryptography, as well as acceleration techniques, and the review indicate that the analysis needs to be strengthened.}
12
13
14
15 \section{Reviewer: 1}
16
17
18 \bigskip
19 \textit{The authors should include a summary of  test measurements showing their method passes the test sets mentioned (NIST, Diehard, TestU01) instead of the one sentence saying it passed that is in section 1.}
20
21 \begin{color}{red} Raph, c'est pour toi ça.\end{color}
22
23
24 \bigskip
25 \textit{Section 9:
26 The authors say they replace the xor-like PRNG with a cryptographically secure one, BBS, but then proceed to use extremely small values, as far as a cryptographer is concerned (modulus of $2^{16}$), in the computation  due  to the need to use 32 bit integers in the GPU and combine bits from multiple BBS generated values, but they never prove (or even discuss) how this  can be considered cryptographically secure due to the small  individual values. At the end of 9.1, the authors say $S^n$ is secure because it is formed from bits from the BBS generator, but do not consider if the use of such small values will lead to exhaust searches to determine individual bits. The authors either need to remove all of section 9 and or prove the resulting PRNG is cryptographically secure.}
27
28 A new section has been added to measure practically the security of the generator.
29
30 \bigskip
31 \textit{In the conclusion:
32 Reword last sentence of 1st paragraph
33 In the 2nd paragraph, change "these researches" to "this research" in  "we plan to extend ..."}
34
35 Done.
36
37
38 \section{Reviewer: 2}
39
40
41 \bigskip
42 \textit{The paper is, overall, well written and clear, with appropriate references to the relevant concepts and prior work. The motivation of the work, however, is not quite clear: the authors present (provable) chaotic properties of a PRNG as a security improvement, but provide no convincing argument beyond opinion (or hope).}
43
44
45 \bigskip
46 \textit{There seems to have been no effort in showing how the new PRNG improves on a single (say) xorshift generator, considering the slowdown of calling 3 of them per iteration (cf. Listing 1). This could be done, if not with the mathematical rigor of chaos theory, then with simpler bit diffusion metrics, often used in cryptography to evaluate building blocks of ciphers.}
47
48 \bigskip
49 \textit{The generator of Listing 1, despite being proved chaotic, has several problems. First, it doesn't seem to be new; using xor to mix the states of several independent generators is standard procedure (e.g., [1]).}
50
51 \bigskip
52 \textit{Secondly, the periods of the 3 xorshift generators are not coprime --- this reduces the useful period of combining the sequences.}
53
54 \bigskip
55 \textit{Thirdly, by combining 3 linear generators with xor, another linear operation, you still get a linear generator, potentially vulnerable to stringent high-dimensional spectral tests.}
56
57 \bigskip
58 \textit{The BBS-based generator of section 9 is anything but cryptographically secure.} 
59
60 This claim is surprising, as this result is mathematically proven in the article: 
61 either there is something wrong in the proof, or the generator is cryptographically
62 secure. Indeed, there is probably a misunderstanding of this notion, which does
63 not deal with the practical aspects of security. For instance, BBS is 
64 cryptographically secure, but whatever the size of the keys, a brute force attack always
65 achieve to break it. It is only a question of time: with sufficiently large primes,
66 the time required to break it is astronomically large, making this attack completely
67 impracticable in practice. To sum up, being cryptographically secure is not a
68 question of key size, 
69
70
71
72 \bigskip
73 \textit{A 16-bit modulus (trivially factorable) gives out a period of at most $2^{16}$, which is neither useful nor secure. Its speed is irrelevant, as this generator as no practical applications whatsoever (a larger modulus, at least 1024-bit long, might be useful in some situations, but it will be a terrible GPU performer, of course).}
74
75 \bigskip
76 \textit{To sum it up, while the theoretical part of the paper is interesting, the practical results leave much to be desired, and do not back the thesis that chaos improves some quality metric of the generators.} 
77
78
79 \bigskip
80 \textit{On the theoretical side, you may be interested in Vladimir Anashin's work on ergodic theory on p-adic (specifically, 2-adic) numbers to prove uniform distribution and maximal period of generators. The $d_s(S, \check{S})$ distance loosely resembles the p-adic norm.}
81
82 We have already established the uniform distribution in \cite{FCt}.
83
84 \bigskip
85 \textit{Typos and other nitpicks:\\
86  - Blub Blum Shub is misspelled in a few places as "Blum Blum Shum";}
87  
88 These misspells have been corrected (sorry for that).
89  
90 \bigskip
91 \textit{ - Page 12, right column, line 54: In "$t<<=4$", the $<<$ operation is using the `` character instead.}
92
93 \bigskip
94 \textit{ [1] Howes, L., and Thomas, D. "Efficient random number generation and application using CUDA." In GPU Gems 3, H. Nguyen, Ed. NVIDIA, 2007, Ch. 37. }
95
96 \end{document}