Home
last modified time | relevance | path

Searched refs:CryptoParams (Results 1 – 7 of 7) sorted by relevance

/external/chromium/third_party/libjingle/source/talk/session/phone/
Dsrtpfilter.h108 bool SetOffer(const std::vector<CryptoParams>& offer_params,
115 bool SetAnswer(const std::vector<CryptoParams>& answer_params,
128 bool StoreParams(const std::vector<CryptoParams>& offer_params,
130 bool NegotiateParams(const std::vector<CryptoParams>& answer_params,
131 CryptoParams* selected_params);
132 bool ApplyParams(const CryptoParams& send_params,
133 const CryptoParams& recv_params);
140 std::vector<CryptoParams> offer_params_;
Dcryptoparams.h36 struct CryptoParams { struct
37 CryptoParams() : tag(0) {} in CryptoParams() function
38 CryptoParams(int t, const std::string& cs, in CryptoParams() function
42 bool Matches(const CryptoParams& params) const { in Matches() argument
Dsrtpfilter.cc86 bool SrtpFilter::SetOffer(const std::vector<CryptoParams>& offer_params, in SetOffer()
97 bool SrtpFilter::SetAnswer(const std::vector<CryptoParams>& answer_params, in SetAnswer()
105 CryptoParams selected_params; in SetAnswer()
156 bool SrtpFilter::StoreParams(const std::vector<CryptoParams>& params, in StoreParams()
163 bool SrtpFilter::NegotiateParams(const std::vector<CryptoParams>& answer_params, in NegotiateParams()
164 CryptoParams* selected_params) { in NegotiateParams()
170 std::vector<CryptoParams>::const_iterator it; in NegotiateParams()
190 bool SrtpFilter::ApplyParams(const CryptoParams& send_params, in ApplyParams()
191 const CryptoParams& recv_params) { in ApplyParams()
Dmediasessionclient.h200 const std::vector<CryptoParams>& cryptos() const { return cryptos_; } in cryptos()
201 void AddCrypto(const CryptoParams& params) { in AddCrypto()
217 std::vector<CryptoParams> cryptos_;
Dmediasessionclient.cc52 typedef std::vector<CryptoParams> CryptoParamsVec;
99 bool CreateCryptoParams(int tag, const std::string& cipher, CryptoParams *out) { in CreateCryptoParams()
239 bool SelectCrypto(const MediaContentDescription* offer, CryptoParams *crypto) { in SelectCrypto()
282 CryptoParams crypto; in CreateAnswer()
319 CryptoParams crypto; in CreateAnswer()
480 CryptoParams* out, in ParseCryptoParams()
496 *out = CryptoParams(tag, crypto_suite, key_params, session_params); in ParseCryptoParams()
520 CryptoParams params; in ParseGingleEncryption()
642 CryptoParams params; in ParseJingleEncryption()
Dchannel.h51 struct CryptoParams;
211 bool SetSrtp_w(const std::vector<CryptoParams>& params, ContentAction action,
Dchannel.cc494 bool BaseChannel::SetSrtp_w(const std::vector<CryptoParams>& cryptos, in SetSrtp_w()