Home
last modified time | relevance | path

Searched refs:mechanism (Results 1 – 25 of 317) sorted by relevance

12345678910>>...13

/external/chromium_org/content/child/webcrypto/nss/
Dhmac_nss.cc35 CK_MECHANISM_TYPE* mechanism) { in WebCryptoHashToHMACMechanism() argument
38 *mechanism = CKM_SHA_1_HMAC; in WebCryptoHashToHMACMechanism()
41 *mechanism = CKM_SHA256_HMAC; in WebCryptoHashToHMACMechanism()
44 *mechanism = CKM_SHA384_HMAC; in WebCryptoHashToHMACMechanism()
47 *mechanism = CKM_SHA512_HMAC; in WebCryptoHashToHMACMechanism()
66 CK_MECHANISM_TYPE mechanism = CKM_INVALID_MECHANISM; in GenerateSecretKey() local
67 if (!WebCryptoHashToHMACMechanism(hash, &mechanism)) in GenerateSecretKey()
80 mechanism, in GenerateSecretKey()
109 CK_MECHANISM_TYPE mechanism = CKM_INVALID_MECHANISM; in ImportKeyRaw() local
110 if (!WebCryptoHashToHMACMechanism(hash, &mechanism)) in ImportKeyRaw()
[all …]
Dsym_key_nss.cc24 CK_MECHANISM_TYPE mechanism, in GenerateSecretKeyNss() argument
26 DCHECK_NE(CKM_INVALID_MECHANISM, mechanism); in GenerateSecretKeyNss()
33 PK11_KeyGen(slot.get(), mechanism, NULL, keylen_bytes, NULL)); in GenerateSecretKeyNss()
60 CK_MECHANISM_TYPE mechanism, in ImportKeyRawNss() argument
69 mechanism, in ImportKeyRawNss()
Dsym_key_nss.h23 CK_MECHANISM_TYPE mechanism,
30 CK_MECHANISM_TYPE mechanism,
Daes_kw_nss.cc34 CK_MECHANISM_TYPE mechanism, in DoUnwrapSymKeyAesKw() argument
63 mechanism, in DoUnwrapSymKeyAesKw()
/external/chromium_org/third_party/libjingle/source/talk/xmpp/
Dxmppauth.cc92 const std::string& mechanism) { in CreateSaslMechanism() argument
93 if (mechanism == buzz::AUTH_MECHANISM_OAUTH2) { in CreateSaslMechanism()
95 mechanism, jid_.Str(), auth_token_, "oauth2"); in CreateSaslMechanism()
96 } else if (mechanism == buzz::AUTH_MECHANISM_GOOGLE_TOKEN) { in CreateSaslMechanism()
97 return new buzz::SaslCookieMechanism(mechanism, jid_.Str(), auth_token_); in CreateSaslMechanism()
100 } else if (mechanism == buzz::AUTH_MECHANISM_PLAIN) { in CreateSaslMechanism()
Dsaslcookiemechanism.h41 SaslCookieMechanism(const std::string & mechanism, in SaslCookieMechanism() argument
45 : mechanism_(mechanism), in SaslCookieMechanism()
50 SaslCookieMechanism(const std::string & mechanism, in SaslCookieMechanism() argument
53 : mechanism_(mechanism), in SaslCookieMechanism()
Dplainsaslhandler.h65 virtual SaslMechanism * CreateSaslMechanism(const std::string & mechanism) { in CreateSaslMechanism() argument
66 if (mechanism == "PLAIN") { in CreateSaslMechanism()
Dxmppclientsettings.h47 void set_auth_token(const std::string& mechanism, in set_auth_token() argument
49 auth_mechanism_ = mechanism; in set_auth_token()
Dsaslhandler.h54 virtual SaslMechanism * CreateSaslMechanism(const std::string & mechanism) = 0;
/external/smack/src/org/jivesoftware/smack/
DSASLAuthentication.java.orig47 * 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.
132 * The SASL mechanism must be registered via {@link #registerSASLMechanism(String, Class)}
[all …]
DSASLAuthentication.java220 for (String mechanism : mechanismsPreferences) { in authenticate()
221 if (implementedMechanisms.containsKey(mechanism) && in authenticate()
222 serverMechanisms.contains(mechanism)) { in authenticate()
223 selectedMechanism = mechanism; in authenticate()
302 for (String mechanism : mechanismsPreferences) { in authenticate()
303 if (implementedMechanisms.containsKey(mechanism) && in authenticate()
304 serverMechanisms.contains(mechanism)) { in authenticate()
305 selectedMechanism = mechanism; in authenticate()
/external/chromium_org/jingle/notifier/base/
Dgaia_token_pre_xmpp_auth.cc21 GaiaCookieMechanism(const std::string & mechanism, in GaiaCookieMechanism() argument
26 mechanism, username, cookie, token_service) {} in GaiaCookieMechanism()
111 const std::string& mechanism) { in CreateSaslMechanism() argument
112 if (mechanism == auth_mechanism_) in CreateSaslMechanism()
114 mechanism, username_, token_, token_service_); in CreateSaslMechanism()
/external/smack/src/org/apache/harmony/javax/security/sasl/
DSasl.java134 public static SaslServer createSaslServer(String mechanism, String protocol, in createSaslServer() argument
136 if (mechanism == null) { in createSaslServer()
151 if (mech[j].equals(mechanism)) { in createSaslServer()
158 SaslServer saslS = fact.createSaslServer(mechanism, protocol, serverName, prop, in createSaslServer()
/external/chromium_org/gpu/GLES2/extensions/CHROMIUM/
DCHROMIUM_flipy.txt74 "There is a mechanism for selecting a sub-rectangle of groups
75 from a larger containing rectangle. This mechanism relies on
88 "There is a mechanism for selecting a sub-rectangle of groups
89 from a larger containing rectangle. This mechanism relies on
/external/clang/test/Index/
Dcomment-misc-tags.m10 @abstract Single-threaded work-loop client request mechanism.
11 @discussion An IOCommandGate instance is an extremely light weight mechanism that
27 // CHECK-NEXT: (CXComment_Text Text=[ Single-threaded work-loop client request mechanism.] Ha…
30 …ment_Text Text=[ An IOCommandGate instance is an extremely light weight mechanism that] HasTrailin…
/external/chromium_org/net/quic/crypto/
Daes_128_gcm_12_encrypter_nss.cc70 CK_MECHANISM_TYPE mechanism, in My_Encrypt() argument
82 return pk11_encrypt_func(key, mechanism, param, out, out_len, max_len, data, in My_Encrypt()
93 DCHECK_EQ(mechanism, static_cast<CK_MECHANISM_TYPE>(CKM_AES_GCM)); in My_Encrypt()
Daes_128_gcm_12_decrypter_nss.cc70 CK_MECHANISM_TYPE mechanism, in My_Decrypt() argument
82 return pk11_decrypt_func(key, mechanism, param, out, out_len, max_len, enc, in My_Decrypt()
93 DCHECK_EQ(mechanism, static_cast<CK_MECHANISM_TYPE>(CKM_AES_GCM)); in My_Decrypt()
/external/chromium_org/remoting/signaling/
Dxmpp_signal_strategy.cc248 std::string mechanism = notifier::kDefaultGaiaAuthMechanism; in CreatePreXmppAuth() local
250 mechanism = "X-OAUTH2"; in CreatePreXmppAuth()
254 jid.Str(), settings.auth_token(), settings.token_service(), mechanism); in CreatePreXmppAuth()
/external/smack/asmack-master/static-src/custom/de/measite/smack/
DSasl.java71 public static SaslServer createSaslServer(String mechanism, String protocol, in createSaslServer() argument
73 …return org.apache.harmony.javax.security.sasl.Sasl.createSaslServer(mechanism, protocol, serverNam… in createSaslServer()
/external/smack/src/de/measite/smack/
DSasl.java71 public static SaslServer createSaslServer(String mechanism, String protocol, in createSaslServer() argument
73 …return org.apache.harmony.javax.security.sasl.Sasl.createSaslServer(mechanism, protocol, serverNam… in createSaslServer()
/external/iptables/libipq/
Dlibipq.pc.in8 Description: Interface to the (old) ip_queue mechanism
/external/chromium_org/mojo/public/c/
DREADME.md20 library (the exact mechanism being platform-dependent) and use the header files
24 mechanism, is performance: The protocol (and transport mechanisms) used to
/external/objenesis/
DREADME.android2 Java's standard constructor mechanism. This is sometimes useful in tests, and
/external/markdown/docs/extensions/
DImageLinks.txt7 ImageLinks is a Python-Markdown extension that provides a mechanism for
/external/wpa_supplicant_8/wpa_supplicant/doc/docbook/
Dwpa_background.sgml15 <para>The original security mechanism of IEEE 802.11 standard was
49 keyed packet authentication mechanism (Michael MIC).</para>
64 of the selected key management mechanism (only the method for

12345678910>>...13