Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: cisco/libsrtp
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v2.6
Choose a base ref
...
head repository: cisco/libsrtp
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v2.7.0
Choose a head ref
  • 12 commits
  • 11 files changed
  • 3 contributors

Commits on Feb 24, 2024

  1. update version to 2.7.0-pre

    pabuhler committed Feb 24, 2024
    Configuration menu
    Copy the full SHA
    3a399ab View commit details
    Browse the repository at this point in the history

Commits on Dec 6, 2024

  1. Fix srtp_unprotect_rtcp_mki when RTP auth != RTCP

    srtp_get_session_keys, which is used by both srtp_unprotect_mki and
    srtp_unprotect_rtcp_mki, determines the tag len from rtp_auth.
    
    This fails when rtp_auth differ from rtcp_auth. E.g. when SRTP is used
    with weak authentication but SRTCP must not (RFC 3711).
    
    This commit splits the function in two:
    srtp_get_session_keys_rtp
    srtp_get_session_keys_rtcp
    
    And adds a short auth policy test to test/srtp_driver.
    vopatek committed Dec 6, 2024
    Configuration menu
    Copy the full SHA
    63a19f4 View commit details
    Browse the repository at this point in the history

Commits on Dec 11, 2024

  1. explicitly look for mbedcrypto dependency

    At least on OSX this is now required in order get the mbedcrypto library on the link line.
    
    I ma not sure what has changed but testing shows this to fix the issue.
    
    #700
    
    (cherry picked from commit 981d695)
    pabuhler committed Dec 11, 2024
    Configuration menu
    Copy the full SHA
    1af5c91 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #736 from pabuhler/mbedtls-link-fix

    explicitly look for mbedcrypto dependency
    pabuhler authored Dec 11, 2024
    Configuration menu
    Copy the full SHA
    2b1330d View commit details
    Browse the repository at this point in the history
  3. Merge pull request #733 from vopatek/fix-rtcp-mki-when-rtp-short-auth

    Fix srtp_unprotect_rtcp_mki when RTP auth != RTCP
    pabuhler authored Dec 11, 2024
    Configuration menu
    Copy the full SHA
    596e30e View commit details
    Browse the repository at this point in the history

Commits on Feb 11, 2025

  1. Fix function signature mismatch for srtp_remove_stream

     - The definition for the function has the signature:
       `srtp_err_status_t srtp_remove_stream(srtp_t session, uint32_t ssrc)`
     - This is not always same as the signature present in srtp.h:
       `srtp_err_status_t srtp_remove_stream(srtp_t session, unsigned int ssrc)`
    
    This causes function signature mismatch.
    Aligned the signature from `srtp.h` with the definition using `uint32_t`
    vikramdattu committed Feb 11, 2025
    Configuration menu
    Copy the full SHA
    9fd71ba View commit details
    Browse the repository at this point in the history
  2. update formatting scripts to clang-format-14

    Git hub is moving to ubuntu-latest on GitHub is moving
    to 24.04 and there re issues installing clang-format-12 .
    
    (cherry picked from commit 2a6c15d)
    pabuhler committed Feb 11, 2025
    Configuration menu
    Copy the full SHA
    a18fa10 View commit details
    Browse the repository at this point in the history
  3. Merge pull request #747 from pabuhler/2-x-clang-format

    update formatting scripts to  clang-format-14
    pabuhler authored Feb 11, 2025
    Configuration menu
    Copy the full SHA
    a04bfad View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    377c7ce View commit details
    Browse the repository at this point in the history
  5. Merge pull request #748 from pabuhler/2-x-cifuzz-fix

    update upload-artifact version in cifuzz task
    pabuhler authored Feb 11, 2025
    Configuration menu
    Copy the full SHA
    209d399 View commit details
    Browse the repository at this point in the history
  6. Merge pull request #746 from vikramdattu/bugfix/srtp_remove_stream_si…

    …gnature
    
    Fix function signature mismatch for `srtp_remove_stream`
    pabuhler authored Feb 11, 2025
    Configuration menu
    Copy the full SHA
    c847568 View commit details
    Browse the repository at this point in the history

Commits on Mar 11, 2025

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