Home | History | Annotate | Download | only in media

Lines Matching defs:private_key

33         db->DoesColumnExist(kWebRTCIdentityStoreDBName, "private_key") &&
48 "private_key BLOB NOT NULL,"
68 const std::string& private_key)
71 private_key(private_key),
76 const std::string& private_key,
80 private_key(private_key),
85 std::string private_key;
237 iter->second.private_key));
254 const std::string& private_key) {
262 Identity identity(common_name, certificate, private_key);
405 "certificate, private_key, creation_time "
412 std::string cert, private_key;
414 stmt.ColumnBlobAsString(4, &private_key);
418 key, Identity(common_name, cert, private_key, creation_time)));
541 " private_key, creation_time) VALUES"
575 const std::string& private_key = (*it)->identity.private_key;
576 add_stmt.BindBlob(4, private_key.data(), private_key.size());