library.bib 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. %% oldest and most popular article about known attacks on RSA.
  2. @article{20years,
  3. title={Twenty years of attacks on the RSA cryptosystem},
  4. author={Boneh, Dan and Rivest, Ron and Shamir, Adi and Adleman, Len and others},
  5. journal={Notices of the AMS},
  6. volume={46},
  7. number={2},
  8. pages={203--213},
  9. year={1999}
  10. }
  11. %% reccomended limits of p-q
  12. @misc{DSS2009,
  13. title={FIPS PUB 186-3: Digital Signature Standard},
  14. author={NIST},
  15. year={2009}
  16. }
  17. %% here there's the descriptions for an efficient computation of fₚ(x) = y . y² ≡ x (mod p)
  18. %% [openssl implements it]
  19. @misc{ieee2001ieee,
  20. title = {IEEE P1363a D10 (Draft Version 10):
  21. Standard Specifications for Public Key Cryptography:
  22. Additional Techniques, IEEE P1363 Working Group, Working draft},
  23. author = {IEEE P1363 Working Group and others},
  24. year = {2001}
  25. }
  26. @book{bombelli:algebra,
  27. title = {L'Algebra},
  28. author ={Rafael Bombelli},
  29. year={1572},
  30. url={http://mathematica.sns.it/opere/9/}
  31. }
  32. @book{AOCPv2,
  33. author = {Knuth, Donald E.},
  34. title = {The Art of Computer Programming, Volume 2 (3rd Ed.):
  35. Seminumerical Algorithms},
  36. year = {1997},
  37. isbn = {0-201-89684-2},
  38. publisher = {Addison-Wesley Longman Publishing Co., Inc.},
  39. address = {Boston, MA, USA}
  40. }
  41. @book{MITalg,
  42. author = "T.~H. Cormen and C.~E. Leiserson and R.~L. Rivest and C.~Stein",
  43. edition = "3rd",
  44. publisher = "The MIT Press",
  45. title = "Introduction to Algorithms",
  46. year = 2009,
  47. isbn = "978-0-262-03384-8"
  48. }
  49. @book{Dijkstra:adop,
  50. author = {Dijkstra, Edsger Wybe},
  51. title = {A Discipline of Programming},
  52. year = {1997},
  53. isbn = {013215871X},
  54. edition = {1st},
  55. publisher = {Prentice Hall PTR},
  56. address = {Upper Saddle River, NJ, USA},
  57. }
  58. @book{riesel,
  59. author = {Riesel, Hans},
  60. title = {Prime Numbers and Computer Methods for Factorization},
  61. year = {1985},
  62. isbn = {0-8176-3291-3},
  63. publisher = {Birkhauser Boston Inc.},
  64. address = {Cambridge, MA, USA},
  65. }
  66. @article{wiener,
  67. author = {Michael J. Wiener},
  68. title = {Cryptanalysis of short RSA secret exponents},
  69. journal = {IEEE Transactions on Information Theory},
  70. year = {1990},
  71. volume = {36},
  72. pages = {553--558},
  73. url = {http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.92.5261}
  74. }