-
Notifications
You must be signed in to change notification settings - Fork 54
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
Please make ProtectionProfile methods public #258
Comments
That sounds great! Mind opening a PR? |
Sean-Der
pushed a commit
to sirzooro/pion_srtp
that referenced
this issue
Feb 25, 2024
This allows to get values like key length and use them with key management protocols like MIKEY, instead of creating own constants for this. Resolves pion#258
sirzooro
added a commit
to sirzooro/pion_srtp
that referenced
this issue
Jul 7, 2024
This allows to get values like key length and use them with key management protocols like MIKEY, instead of creating own constants for this. Resolves pion#258
sirzooro
added a commit
to sirzooro/pion_srtp
that referenced
this issue
Jul 8, 2024
This allows to get values like key length and use them with key management protocols like MIKEY, instead of creating own constants for this. Resolves pion#258
sirzooro
added a commit
that referenced
this issue
Jul 8, 2024
This allows to get values like key length and use them with key management protocols like MIKEY, instead of creating own constants for this. Resolves #258
sirzooro
added a commit
to sirzooro/pion_srtp
that referenced
this issue
Jul 8, 2024
This allows to get values like key length and use them with key management protocols like MIKEY, instead of creating own constants for this. Resolves pion#258
sirzooro
added a commit
that referenced
this issue
Jul 8, 2024
This allows to get values like key length and use them with key management protocols like MIKEY, instead of creating own constants for this. Resolves #258
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Summary
Please make
ProtectionProfile
methods publicMotivation
I am implementing SRTP support for my RTSP Server. I need to send key management parameters using MIKEY protocol to RTSP client. They include lengths of key, salt, etc.
Describe alternatives you've considered
I added constants for these values to my code. Calling
ProtectionProfile
methods to get these values would result in cleaner code.The text was updated successfully, but these errors were encountered: