HomeSort by relevance Sort by last modified time
    Searched refs:mechanism (Results 1 - 25 of 105) sorted by null

1 2 3 4 5

  /external/chromium_org/third_party/libjingle/source/talk/xmpp/
xmppauth.cc 87 // No good mechanism found
92 const std::string& mechanism) {
93 if (mechanism == buzz::AUTH_MECHANISM_OAUTH2) {
95 mechanism, jid_.Str(), auth_token_, "oauth2");
96 } else if (mechanism == buzz::AUTH_MECHANISM_GOOGLE_TOKEN) {
97 return new buzz::SaslCookieMechanism(mechanism, jid_.Str(), auth_token_);
98 // } else if (mechanism == buzz::AUTH_MECHANISM_GOOGLE_COOKIE) {
99 // return new buzz::SaslCookieMechanism(mechanism, jid.Str(), sid_);
100 } else if (mechanism == buzz::AUTH_MECHANISM_PLAIN) {
saslcookiemechanism.h 41 SaslCookieMechanism(const std::string & mechanism,
45 : mechanism_(mechanism),
50 SaslCookieMechanism(const std::string & mechanism,
53 : mechanism_(mechanism),
saslhandler.h 39 // Creates mechanisms to deal with a given mechanism
51 // Creates a SaslMechanism for the given mechanism name (you own it
54 virtual SaslMechanism * CreateSaslMechanism(const std::string & mechanism) = 0;
plainsaslhandler.h 61 // Creates a SaslMechanism for the given mechanism name (you own it
63 virtual SaslMechanism * CreateSaslMechanism(const std::string & mechanism) {
64 if (mechanism == "PLAIN") {
xmppauth.h 67 const std::string& mechanism);
xmppclientsettings.h 47 void set_auth_token(const std::string& mechanism,
49 auth_mechanism_ = mechanism;
  /external/chromium_org/jingle/notifier/base/
gaia_token_pre_xmpp_auth.cc 21 GaiaCookieMechanism(const std::string & mechanism,
26 mechanism, username, cookie, token_service) {}
111 const std::string& mechanism) {
112 if (mechanism == auth_mechanism_)
114 mechanism, username_, token_, token_service_);
gaia_token_pre_xmpp_auth.h 17 // authentication in GTalk. It looks for the X-GOOGLE-TOKEN auth mechanism
18 // and uses that instead of the default auth mechanism (PLAIN).
56 const std::string& mechanism) OVERRIDE;
  /external/smack/src/org/jivesoftware/smack/
SASLAuthentication.java 47 * mechanism wont be used until {@link #supportSASLMechanism(String, int)} is called. By default,
107 * Registers a new SASL mechanism
109 * @param name common name of the SASL mechanism. E.g.: PLAIN, DIGEST-MD5 or KERBEROS_V4.
117 * Unregisters an existing SASL mechanism. Once the mechanism has been unregistered it won't
118 * be possible to authenticate users using the removed SASL mechanism. It also removes the
119 * mechanism from the supported list.
121 * @param name common name of the SASL mechanism. E.g.: PLAIN, DIGEST-MD5 or KERBEROS_V4.
130 * Registers a new SASL mechanism in the specified preference position. The client will try
131 * to authenticate using the most prefered SASL mechanism that is also supported by the server.
    [all...]
SASLAuthentication.java.orig 47 * mechanism wont be used until {@link #supportSASLMechanism(String, int)} is called. By default,
107 * Registers a new SASL mechanism
109 * @param name common name of the SASL mechanism. E.g.: PLAIN, DIGEST-MD5 or KERBEROS_V4.
117 * Unregisters an existing SASL mechanism. Once the mechanism has been unregistered it won't
118 * be possible to authenticate users using the removed SASL mechanism. It also removes the
119 * mechanism from the supported list.
121 * @param name common name of the SASL mechanism. E.g.: PLAIN, DIGEST-MD5 or KERBEROS_V4.
130 * Registers a new SASL mechanism in the specified preference position. The client will try
131 * to authenticate using the most prefered SASL mechanism that is also supported by the server.
    [all...]
  /libcore/luni/src/main/java/javax/crypto/
ExemptionMechanism.java 33 * This class implements the functionality of an exemption mechanism such as
47 // Store mechanism name
48 private final String mechanism; field in class:ExemptionMechanism
66 * @param mechanism
67 * the name of the mechanism.
70 Provider provider, String mechanism) {
71 this.mechanism = mechanism;
83 return mechanism;
88 * specified exemption mechanism algorithm
    [all...]
  /external/smack/asmack-master/static-src/custom/de/measite/smack/
Sasl.java 71 public static SaslServer createSaslServer(String mechanism, String protocol,
73 return org.apache.harmony.javax.security.sasl.Sasl.createSaslServer(mechanism, protocol, serverName, prop, cbh);
  /external/smack/src/de/measite/smack/
Sasl.java 71 public static SaslServer createSaslServer(String mechanism, String protocol,
73 return org.apache.harmony.javax.security.sasl.Sasl.createSaslServer(mechanism, protocol, serverName, prop, cbh);
  /external/smack/src/org/apache/harmony/javax/security/sasl/
Sasl.java 134 public static SaslServer createSaslServer(String mechanism, String protocol,
136 if (mechanism == null) {
151 if (mech[j].equals(mechanism)) {
158 SaslServer saslS = fact.createSaslServer(mechanism, protocol, serverName, prop,
  /external/chromium_org/chrome/common/extensions/docs/server2/
features_utility.py 43 mechanism.
  /external/chromium_org/net/quic/crypto/
aead_base_decrypter.h 18 PK11SymKey* symKey, CK_MECHANISM_TYPE mechanism, SECItem* param,
aead_base_encrypter.h 18 PK11SymKey* symKey, CK_MECHANISM_TYPE mechanism, SECItem* param,
aes_128_gcm_12_decrypter_nss.cc 48 // necessary function (PK11_Decrypt) or mechanism support (CKM_AES_GCM).
70 CK_MECHANISM_TYPE mechanism,
82 return pk11_decrypt_func(key, mechanism, param, out, out_len, max_len, enc,
93 DCHECK_EQ(mechanism, static_cast<CK_MECHANISM_TYPE>(CKM_AES_GCM));
aes_128_gcm_12_encrypter_nss.cc 48 // necessary function (PK11_Encrypt) or mechanism support (CKM_AES_GCM).
70 CK_MECHANISM_TYPE mechanism,
82 return pk11_encrypt_func(key, mechanism, param, out, out_len, max_len, data,
93 DCHECK_EQ(mechanism, static_cast<CK_MECHANISM_TYPE>(CKM_AES_GCM));
  /external/chromium_org/remoting/jingle_glue/
xmpp_signal_strategy.cc 242 std::string mechanism = notifier::kDefaultGaiaAuthMechanism; local
244 mechanism = "X-OAUTH2";
248 jid.Str(), settings.auth_token(), settings.token_service(), mechanism);
  /device/asus/grouper/
BoardConfig.mk 18 # disable makefiles (the proper mechanism to control what gets
  /device/asus/tilapia/
BoardConfig.mk 18 # disable makefiles (the proper mechanism to control what gets
  /external/apache-harmony/crypto/src/test/impl/java/org/apache/harmony/crypto/tests/javax/crypto/
ExemptionMechanism_ImplTest.java 288 public myEM(ExemptionMechanismSpi spi, Provider prov, String mechanism) {
289 super(spi, prov, mechanism);
  /external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/
RecognizerSharedState.as 27 * ad naseum. This is a failsafe mechanism to guarantee that at least
64 * something nonnull so that the auto token emit mechanism will not
  /external/chromium_org/net/cert/
ev_root_ca_metadata_unittest.cc 49 oid_data.mechanism = CKM_INVALID_MECHANISM;

Completed in 1164 milliseconds

1 2 3 4 5