You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently Fennec does not sign responses with MESSAGE-INTEGRITY. TURN clients do not require messages to be signed, but if they are, MESSAGE-INTEGRITY must be checked. It's just an extra security measure.
The text was updated successfully, but these errors were encountered:
$ grep -r -i --color verified lib/
lib//mongooseice/auth.ex: true<- params.verified?do
lib//mongooseice/auth.ex: false -># Not verified
$ grep -r -i --color signed lib/
##
lib//mongooseice/auth.ex: signed? = params.signed?
lib//mongooseice/auth.ex: nil when not signed? ->
lib//mongooseice/auth.ex: _ when signed? ->
Looking at the Jerboa code, however, it seems like we don't support message integrity for the short-term credential mechanism. There are tests for the existing functionality.
Currently Fennec does not sign responses with MESSAGE-INTEGRITY. TURN clients do not require messages to be signed, but if they are, MESSAGE-INTEGRITY must be checked. It's just an extra security measure.
The text was updated successfully, but these errors were encountered: