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

Add OpenSSL TLS 1.3 PSK callbacks #1993

Open
wants to merge 7 commits into
base: master
Choose a base branch
from

Commits on Jul 8, 2023

  1. Configuration menu
    Copy the full SHA
    4319f96 View commit details
    Browse the repository at this point in the history

Commits on Jul 14, 2023

  1. Configuration menu
    Copy the full SHA
    4565f0f View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    6a772d1 View commit details
    Browse the repository at this point in the history
  3. Return Option from SslCipherRef::find(), check input

    Previously input length was unchecked.  OpenSSL still returned NULL on a
    too-short inuput, but returned a value on a too-long input.
    
    OpenSSL doesn't add an error internally if a SSL_CIPHER_find() fails so
    an Option<> seems better.
    
    SslCipherRef::find() now checks to ensure the length of the cipher ID is
    exactly 2 to avoid too-long cipher IDs matching.
    drbrain committed Jul 14, 2023
    Configuration menu
    Copy the full SHA
    0e0f76b View commit details
    Browse the repository at this point in the history

Commits on Jul 17, 2023

  1. Fix clippy

    drbrain committed Jul 17, 2023
    Configuration menu
    Copy the full SHA
    8815e7a View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    36f5fe9 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    5529c79 View commit details
    Browse the repository at this point in the history