library.bib 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. %% oldest and most popular article about known attacks on RSA.
  2. @article{boneh1999twenty,
  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): Standard Specifications for Public Key Cryptography: Additional Techniques, IEEE P1363 Working Group, Working draft},
  21. author={IEEE P1363 Working Group and others},
  22. year={2001}
  23. }
  24. @book{AOCPv2,
  25. author = {Knuth, Donald E.},
  26. title = {The Art of Computer Programming, Volume 2 (3rd Ed.): Seminumerical Algorithms},
  27. year = {1997},
  28. isbn = {0-201-89684-2},
  29. publisher = {Addison-Wesley Longman Publishing Co., Inc.},
  30. address = {Boston, MA, USA},
  31. }
  32. @book{MITalg,
  33. author = "T.~H. Cormen and C.~E. Leiserson and R.~L. Rivest and C.~Stein",
  34. edition = "3rd",
  35. publisher = "The MIT Press",
  36. title = "Introduction to Algorithms",
  37. year = 2009,
  38. isbn = "978-0-262-03384-8"
  39. }
  40. @book{Dijkstra:adop,
  41. author = {Dijkstra, Edsger Wybe},
  42. title = {A Discipline of Programming},
  43. year = {1997},
  44. isbn = {013215871X},
  45. edition = {1st},
  46. publisher = {Prentice Hall PTR},
  47. address = {Upper Saddle River, NJ, USA},
  48. }
  49. @book{riesel,
  50. author = {Riesel, Hans},
  51. title = {Prime Numbers and Computer Methods for Factorization},
  52. year = {1985},
  53. isbn = {0-8176-3291-3},
  54. publisher = {Birkhauser Boston Inc.},
  55. address = {Cambridge, MA, USA},
  56. }