static int rtp_auth_tag_len(int crypto_suite) { switch (crypto_suite) { case webrtc::kSrtpAes128CmSha1_32: return4; case webrtc::kSrtpAes128CmSha1_80: return10; case webrtc::kSrtpAeadAes128Gcm: case webrtc::kSrtpAeadAes256Gcm: return16; default:
RTC_CHECK_NOTREACHED();
}
}
static int rtcp_auth_tag_len(int crypto_suite) { switch (crypto_suite) { case webrtc::kSrtpAes128CmSha1_32: case webrtc::kSrtpAes128CmSha1_80: return10; case webrtc::kSrtpAeadAes128Gcm: case webrtc::kSrtpAeadAes256Gcm: return16; default:
RTC_CHECK_NOTREACHED();
}
}
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.