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

Backport 2.7: Fix unsafe bounds check in ssl_load_session() #2132

Merged
merged 4 commits into from
Dec 7, 2018

Commits on Oct 26, 2018

  1. Use brackets around shift operations

    Use `( x >> y ) & z` instead of `x >> y & z`. Both are equivalent
    by operator precedence, but the former is more readable and the
    commonly used idiom in the library.
    Hanno Becker committed Oct 26, 2018
    Configuration menu
    Copy the full SHA
    e67f7a7 View commit details
    Browse the repository at this point in the history
  2. Fix unsafe bounds checks in ssl_load_session()

    Fixes Mbed-TLS#659 reported by Guido Vranken.
    Hanno Becker committed Oct 26, 2018
    Configuration menu
    Copy the full SHA
    fa95a6a View commit details
    Browse the repository at this point in the history
  3. Indentation fix

    Hanno Becker committed Oct 26, 2018
    Configuration menu
    Copy the full SHA
    52adf34 View commit details
    Browse the repository at this point in the history
  4. Adapt ChangeLog

    Hanno Becker committed Oct 26, 2018
    Configuration menu
    Copy the full SHA
    7cf2857 View commit details
    Browse the repository at this point in the history