library.bib 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  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. }