Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feature/test rsa pkcs1 #48

Merged
merged 32 commits into from
Aug 28, 2014
Merged

Feature/test rsa pkcs1 #48

merged 32 commits into from
Aug 28, 2014

Commits on Aug 28, 2014

  1. Configuration menu
    Copy the full SHA
    b231727 View commit details
    Browse the repository at this point in the history
  2. rt.py: initial version

    sjaeckel committed Aug 28, 2014
    Configuration menu
    Copy the full SHA
    6dfe001 View commit details
    Browse the repository at this point in the history
  3. fix pss-vect.txt

    sjaeckel committed Aug 28, 2014
    Configuration menu
    Copy the full SHA
    055c515 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    2695165 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    4a819b2 View commit details
    Browse the repository at this point in the history
  6. add testprof/no_prng

    a PRNG that is no PRNG as its output is predefined and can be set
    by calling add_entropy()
    sjaeckel committed Aug 28, 2014
    Configuration menu
    Copy the full SHA
    b570175 View commit details
    Browse the repository at this point in the history
  7. add testprof/pkcs_1_pss_test

    sjaeckel committed Aug 28, 2014
    Configuration menu
    Copy the full SHA
    fe1b6ec View commit details
    Browse the repository at this point in the history
  8. Fixed small padding error in the PKCS#1 PSS code.

    The existing LTC code for padding meassages for PSS signatures
    contained a small error. In particular, the PSS-passing algorithms is
    supposed to be given (bitlength of key - 1) as an argument. The LTC
    code passes (bitlength of key), and subtracts 1 in the middle of the
    PSS-padding. This subtraction unfortunately comes too late: a
    calculation using that argument has already been made. Fortunately,
    this bug only appeared if the bit-length of the key was 1 mod 8, and
    so is unlikely to show up in practice. Still, this patch fixes the
    problem.
    
    Conflicts:
    	src/pk/pkcs1/pkcs_1_pss_decode.c
    jonathanherzog authored and sjaeckel committed Aug 28, 2014
    Configuration menu
    Copy the full SHA
    3324da2 View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    faa9c6a View commit details
    Browse the repository at this point in the history
  10. make pkcs1 test more generic

    sjaeckel committed Aug 28, 2014
    Configuration menu
    Copy the full SHA
    60b9c5a View commit details
    Browse the repository at this point in the history
  11. Configuration menu
    Copy the full SHA
    b0c7cbf View commit details
    Browse the repository at this point in the history
  12. add oaep testvectors

    sjaeckel committed Aug 28, 2014
    Configuration menu
    Copy the full SHA
    ed0982b View commit details
    Browse the repository at this point in the history
  13. Configuration menu
    Copy the full SHA
    c99a147 View commit details
    Browse the repository at this point in the history
  14. Configuration menu
    Copy the full SHA
    95f9d52 View commit details
    Browse the repository at this point in the history
  15. Configuration menu
    Copy the full SHA
    25fcd4c View commit details
    Browse the repository at this point in the history
  16. Configuration menu
    Copy the full SHA
    7302a7c View commit details
    Browse the repository at this point in the history
  17. Configuration menu
    Copy the full SHA
    b518247 View commit details
    Browse the repository at this point in the history
  18. Configuration menu
    Copy the full SHA
    c24e2a1 View commit details
    Browse the repository at this point in the history
  19. add testprof/pkcs_1_eme_test

    sjaeckel committed Aug 28, 2014
    Configuration menu
    Copy the full SHA
    92274aa View commit details
    Browse the repository at this point in the history
  20. Configuration menu
    Copy the full SHA
    2c69088 View commit details
    Browse the repository at this point in the history
  21. Configuration menu
    Copy the full SHA
    7c10ec9 View commit details
    Browse the repository at this point in the history
  22. regen rsa-testvectors

    sjaeckel committed Aug 28, 2014
    Configuration menu
    Copy the full SHA
    dc0c6ed View commit details
    Browse the repository at this point in the history
  23. Configuration menu
    Copy the full SHA
    c6dfef9 View commit details
    Browse the repository at this point in the history
  24. Configuration menu
    Copy the full SHA
    5eb9743 View commit details
    Browse the repository at this point in the history
  25. Configuration menu
    Copy the full SHA
    e227000 View commit details
    Browse the repository at this point in the history
  26. udpate bleichenbacher signature attack

    also test for too short padding strings
    sjaeckel committed Aug 28, 2014
    Configuration menu
    Copy the full SHA
    2b3c603 View commit details
    Browse the repository at this point in the history
  27. Configuration menu
    Copy the full SHA
    d51715d View commit details
    Browse the repository at this point in the history
  28. Configuration menu
    Copy the full SHA
    536a199 View commit details
    Browse the repository at this point in the history
  29. rsa_test: improve a bit

    sjaeckel committed Aug 28, 2014
    Configuration menu
    Copy the full SHA
    f86d36c View commit details
    Browse the repository at this point in the history
  30. Configuration menu
    Copy the full SHA
    8ce125f View commit details
    Browse the repository at this point in the history
  31. Configuration menu
    Copy the full SHA
    64f887e View commit details
    Browse the repository at this point in the history
  32. Configuration menu
    Copy the full SHA
    efc6844 View commit details
    Browse the repository at this point in the history