/external/webrtc/talk/media/base/ |
cryptoparams.h | 42 : tag(t), cipher_suite(cs), key_params(kp), session_params(sp) {} 50 std::string key_params; member in struct:cricket::CryptoParams
|
/external/webrtc/webrtc/base/ |
opensslidentity.cc | 46 static EVP_PKEY* MakeKey(const KeyParams& key_params) { 49 if (key_params.type() == KT_RSA) { 50 int key_length = key_params.rsa_params().mod_size; 54 !BN_set_word(exponent, key_params.rsa_params().pub_exp) || 65 } else if (key_params.type() == KT_ECDSA) { 66 if (key_params.ec_curve() == EC_NIST_P256) { 164 OpenSSLKeyPair* OpenSSLKeyPair::Generate(const KeyParams& key_params) { 165 EVP_PKEY* pkey = MakeKey(key_params); 404 OpenSSLKeyPair* key_pair = OpenSSLKeyPair::Generate(params.key_params); 417 const KeyParams& key_params) { [all...] |
opensslidentity.h | 35 static OpenSSLKeyPair* Generate(const KeyParams& key_params); 105 const KeyParams& key_params);
|
rtccertificate_unittests.cc | 78 params.key_params = KeyParams::ECDSA();
|
ssladapter_unittest.cc | 134 const rtc::KeyParams& key_params) 137 ssl_identity_.reset(rtc::SSLIdentity::Generate(GetHostname(), key_params)); 274 const rtc::KeyParams& key_params) 277 server_(new SSLAdapterTestDummyServer(ssl_mode_, key_params)),
|
sslidentity.h | 178 KeyParams key_params; member in struct:rtc::SSLIdentityParams
|
sslidentity.cc | 162 const KeyParams& key_params) { 163 return OpenSSLIdentity::Generate(common_name, key_params);
|
sslidentity_unittest.cc | 399 params.key_params = rtc::KeyParams::ECDSA(rtc::EC_NIST_P256);
|
/system/security/softkeymaster/include/keymaster/ |
softkeymaster.h | 23 const void* key_params, uint8_t** keyBlob, size_t* keyBlobLength);
|
/external/webrtc/talk/app/webrtc/ |
dtlsidentitystore.h | 89 rtc::KeyParams key_params, 92 RequestIdentity(key_params.type(), observer);
|
/hardware/libhardware/include/hardware/ |
keymaster0.h | 56 const keymaster_keypair_t key_type, const void* key_params,
|
keymaster1.h | 57 const void* key_params, uint8_t** key_blob, size_t* key_blob_length);
|
/external/webrtc/webrtc/modules/rtp_rtcp/source/ |
rtp_sender_video.h | 75 const FecProtectionParams* key_params);
|
rtp_sender_video.cc | 217 const FecProtectionParams* key_params) { 220 RTC_DCHECK(key_params); 222 key_fec_params_ = *key_params;
|
rtp_rtcp_impl.h | 290 const FecProtectionParams* key_params) override;
|
/external/webrtc/webrtc/modules/video_coding/include/ |
video_coding_defines.h | 131 const FecProtectionParams* key_params,
|
/external/webrtc/webrtc/modules/video_coding/ |
media_optimization_unittest.cc | 120 const FecProtectionParams* key_params,
|
/external/webrtc/talk/session/media/ |
srtpfilter.cc | 416 applied_send_params_.key_params == send_params.key_params && 418 applied_recv_params_.key_params == recv_params.key_params) { 427 ret = (ParseKeyParams(send_params.key_params, send_key, sizeof(send_key)) && 428 ParseKeyParams(recv_params.key_params, recv_key, sizeof(recv_key))); 461 bool SrtpFilter::ParseKeyParams(const std::string& key_params, 464 // example key_params: "inline:YUJDZGVmZ2hpSktMbW9QUXJzVHVWd3l6MTIzNDU2" 467 if (key_params.find("inline:") != 0) { 472 std::string key_b64(key_params.substr(7)), key_str [all...] |
srtpfilter_unittest.cc | 289 answer[0].key_params = "inline:!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!"; 299 answer[0].key_params = "outline:PS1uQCVeeCFCanVmcjkpPywjNWhcYD0mXXtxaVBR"; 309 answer[0].key_params = "inline:PS1uQCVeeCFCanVmcjkpPywjNWhcYD0mXXtx"; 319 answer[0].key_params = "inline:PS1uQCVeeCFCanVmcjkpPywjNWhcYD0mXXtxaVBRABCD"; 329 answer[0].key_params = 385 offer[0].key_params = kTestKeyParams3; 387 answer[0].key_params = kTestKeyParams4; 424 answer[0].key_params = kTestKeyParams4; [all...] |
/system/security/softkeymaster/ |
keymaster_openssl.cpp | 366 const keymaster0_device_t*, const keymaster_keypair_t key_type, const void* key_params, 374 if (key_params == NULL) { 375 ALOGW("key_params == null"); 379 (const keymaster_dsa_keygen_params_t*)key_params; 383 (const keymaster_ec_keygen_params_t*)key_params; 387 (const keymaster_rsa_keygen_params_t*)key_params;
|
/external/webrtc/webrtc/modules/rtp_rtcp/include/ |
rtp_rtcp.h | 636 const FecProtectionParams* key_params) = 0;
|
/system/keymaster/ |
aes_operation.cpp | 52 const AuthorizationSet& key_params, 60 if (!key_params.GetTagValue(TAG_MIN_MAC_LENGTH, &min_tag_length_bits)) {
|
android_keymaster_test_utils.h | 386 const keymaster_keypair_t key_type, const void* key_params, 389 int result = device(dev)->generate_keypair(device(dev), key_type, key_params, key_blob,
|
/external/webrtc/webrtc/modules/rtp_rtcp/mocks/ |
mock_rtp_rtcp.h | 244 const FecProtectionParams* key_params));
|
/hardware/qcom/keymaster/ |
keymaster_qcom.cpp | 316 const keymaster_keypair_t key_type, const void* key_params, 327 } else if (key_params == NULL) { 328 ALOGE("key_params == null"); 335 keymaster_rsa_keygen_params_t* rsa_params = (keymaster_rsa_keygen_params_t*) key_params;
|