Lines Matching defs:mki
224 " mki=%%s default: \"\" (in hex, without 0x)\n"
551 const char *mki; /* The dtls mki value to use */
808 unsigned char mki[MBEDTLS_TLS_SRTP_MAX_MKI_LENGTH];
990 opt.mki = DFL_SRTP_MKI;
1430 } else if (strcmp(p, "mki") == 0) {
1431 opt.mki = q;
2143 if (opt.use_srtp != 0 && strlen(opt.mki) != 0) {
2144 if (mbedtls_test_unhexify(mki, sizeof(mki),
2145 opt.mki, &mki_len) != 0) {
2146 mbedtls_printf("mki value not valid hex\n");
2151 if ((ret = mbedtls_ssl_dtls_srtp_set_mki_value(&ssl, mki,
2152 (uint16_t) strlen(opt.mki) / 2)) != 0) {
2369 mbedtls_printf(" DTLS-SRTP mki value: ");
2374 mbedtls_printf(" DTLS-SRTP no mki value negotiated");