Home
last modified time | relevance | path

Searched refs:credential (Results 1 – 25 of 147) sorted by relevance

123456

/external/webrtc/webrtc/libjingle/xmpp/
Dsaslplainmechanism.h32 rtc::FormatCryptString credential; in StartSaslAuth() local
33 credential.Append("\0", 1); in StartSaslAuth()
34 credential.Append(user_jid_.node()); in StartSaslAuth()
35 credential.Append("\0", 1); in StartSaslAuth()
36 credential.Append(&password_); in StartSaslAuth()
37 el->AddText(Base64EncodeFromArray(credential.GetData(), credential.GetLength())); in StartSaslAuth()
Dsaslcookiemechanism.h51 std::string credential; in StartSaslAuth() local
52 credential.append("\0", 1); in StartSaslAuth()
53 credential.append(username_); in StartSaslAuth()
54 credential.append("\0", 1); in StartSaslAuth()
55 credential.append(cookie_); in StartSaslAuth()
56 el->AddText(Base64Encode(credential)); in StartSaslAuth()
/external/autotest/site_utils/
Dpubsub_utils.py47 self.credential = self._get_credential()
56 credential = GoogleCredentials.from_stream(self.credential_file)
57 if credential.create_scoped_required():
58 credential = credential.create_scoped(PUBSUB_SCOPES)
59 return credential
71 credentials=self.credential)
Dcloud_console_client.py123 def _create_pubsub_client(credential): argument
124 return pubsub_utils.PubSubClient(credential)
132 credential=moblab_host.MOBLAB_SERVICE_ACCOUNT_LOCATION, argument
141 self._pubsub_client = _create_pubsub_client(credential)
/external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/internal/
DRecordingOkAuthenticator.java28 public final String credential; field in RecordingOkAuthenticator
30 public RecordingOkAuthenticator(String credential) { in RecordingOkAuthenticator() argument
31 this.credential = credential; in RecordingOkAuthenticator()
48 .addHeader("Authorization", credential) in authenticate()
56 .addHeader("Proxy-Authorization", credential) in authenticateProxy()
/external/webrtc/webrtc/examples/objc/AppRTCDemo/
DRTCICEServer+JSON.m17 static NSString const *kRTCICEServerCredentialKey = @"credential";
24 NSString *credential = dictionary[kRTCICEServerCredentialKey];
26 credential = credential ? credential : @"";
29 password:credential];
/external/webrtc/webrtc/api/objc/
DRTCIceServer.mm20 @synthesize credential = _credential;
26 credential:nil];
31 credential:(NSString *)credential {
36 _credential = [credential copy];
DRTCIceServer.h24 @property(nonatomic, copy, readonly, nullable) NSString *credential;
37 credential:(nullable NSString *)credential
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/http/
DAuthenticatorAdapter.java50 String credential = Credentials.basic(auth.getUserName(), new String(auth.getPassword())); in authenticate() local
52 .header("Authorization", credential) in authenticate()
74 String credential = Credentials.basic(auth.getUserName(), new String(auth.getPassword())); in authenticateProxy() local
76 .header("Proxy-Authorization", credential) in authenticateProxy()
/external/wpa_supplicant_8/wpa_supplicant/
DREADME-HS2034 network block or credential. If a credential is picked (based on ANQP
40 whenever needed based on ANQP information and the credential.
48 will internally determine which network or credential is going to be
104 # credential block
106 # Each credential used for automatic network selection is configured as a set
110 # credential fields:
112 # temporary: Whether this credential is temporary and not to be saved
119 # network (based on either an enabled network block or a credential)
194 # points support authentication with this credential. This is an
197 # pre-configured with the credential since the NAI Realm information
[all …]
/external/libcups/cups/
Dtls-darwin.c66 static SecCertificateRef http_cdsa_create_credential(http_credential_t *credential);
502 http_credential_t *credential; /* Credential data */ in _httpCreateCredentials() local
513 for (credential = (http_credential_t *)cupsArrayFirst(credentials); in _httpCreateCredentials()
514 credential; in _httpCreateCredentials()
515 credential = (http_credential_t *)cupsArrayNext(credentials)) in _httpCreateCredentials()
517 if ((secCert = http_cdsa_create_credential(credential)) != NULL) in _httpCreateCredentials()
1173 http_credential_t *credential; /* Credential data */ in _httpTLSStart() local
1615 if ((credential = malloc(sizeof(*credential))) != NULL) in _httpTLSStart()
1617 credential->datalen = (size_t)CFDataGetLength(data); in _httpTLSStart()
1618 if ((credential->data = malloc(credential->datalen))) in _httpTLSStart()
[all …]
Dtls-gnutls.c47 static gnutls_x509_crt_t http_gnutls_create_credential(http_credential_t *credential);
868 http_credential_t *credential) /* I - Credential */ in http_gnutls_create_credential() argument
875 DEBUG_printf(("3http_gnutls_create_credential(credential=%p)", credential)); in http_gnutls_create_credential()
877 if (!credential) in http_gnutls_create_credential()
886 datum.data = credential->data; in http_gnutls_create_credential()
887 datum.size = credential->datalen; in http_gnutls_create_credential()
Dhttp.c220 http_credential_t *credential; /* Credential data */ in httpAddCredential() local
223 if ((credential = malloc(sizeof(http_credential_t))) != NULL) in httpAddCredential()
225 credential->datalen = datalen; in httpAddCredential()
227 if ((credential->data = malloc(datalen)) != NULL) in httpAddCredential()
229 memcpy(credential->data, data, datalen); in httpAddCredential()
230 cupsArrayAdd(credentials, credential); in httpAddCredential()
234 free(credential); in httpAddCredential()
734 http_credential_t *credential; /* Credential */ in httpFreeCredentials() local
737 for (credential = (http_credential_t *)cupsArrayFirst(credentials); in httpFreeCredentials()
738 credential; in httpFreeCredentials()
[all …]
/external/ipsec-tools/src/racoon/doc/
DREADME.gssapi14 its credential, where fqdn is the hostname on the interface that
20 mechanism above. If a credential other than GSS_C_NO_CREDENTIAL
22 credential cache if it its principal matches the desired credential.
24 it in a memory-based credential cache, part of the gss credential
34 credential that racoon will try to acquire. The default value
/external/webrtc/webrtc/api/objctests/
DRTCIceServerTest.mm55 credential:@"credential"];
60 EXPECT_EQ("credential", iceStruct.password);
/external/tpm2/
DMakeCredential.c46 if(in->credential.t.size > CryptGetHashDigestSize(object->publicArea.nameAlg)) in TPM2_MakeCredential()
59 SecretToCredential(&in->credential, &in->objectName, (TPM2B_SEED *) &data, in TPM2_MakeCredential()
DMakeCredential_fp.h14 TPM2B_DIGEST credential; member
DMarshal_MakeCredential.c46 result = TPM2B_DIGEST_Unmarshal(&target->credential, buffer, size); in MakeCredential_In_Unmarshal()
DObject_spt.c1268 sensitiveData = outIDObject->t.credential in SecretToCredential()
1281 outIDObject->t.credential); in SecretToCredential()
1320 inIDObject->t.size, inIDObject->t.credential); in CredentialToSecret()
1324 sensitiveData = inIDObject->t.credential in CredentialToSecret()
/external/okhttp/samples/guide/src/main/java/com/squareup/okhttp/recipes/
DAuthenticate.java34 String credential = Credentials.basic("jesse", "password1"); in run()
36 .header("Authorization", credential) in run()
/external/nos/host/generic/nugget/proto/nugget/app/weaver/
Dweaver.proto38 // To support credential FRP, the key should remain to allow the credential to
/external/autotest/client/cros/
Dcryptohome.py468 def canonicalize(credential): argument
477 if not credential:
480 parts = credential.split('@')
482 raise error.TestError('Malformed email: ' + credential)
/external/webrtc/webrtc/examples/androidapp/src/org/appspot/apprtc/
DRoomParametersFetcher.java209 String credential = in iceServersFromPCConfigJSON() local
211 ret.add(new PeerConnection.IceServer(url, "", credential)); in iceServersFromPCConfigJSON()
/external/google-breakpad/
DREADME33 You will be prompted for credential and a description.
/external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/
DCallTest.java380 String credential = Credentials.basic("jesse", "secret"); in postBodyRetransmittedAfterAuthorizationFail() local
381 client.setAuthenticator(new RecordingOkAuthenticator(credential)); in postBodyRetransmittedAfterAuthorizationFail()
394 assertEquals(credential, recordedRequest2.getHeader("Authorization")); in postBodyRetransmittedAfterAuthorizationFail()
403 String credential = Credentials.basic("jesse", "secret"); in attemptAuthorization20Times() local
404 client.setAuthenticator(new RecordingOkAuthenticator(credential)); in attemptAuthorization20Times()
417 String credential = Credentials.basic("jesse", "secret"); in doesNotAttemptAuthorization21Times() local
418 client.setAuthenticator(new RecordingOkAuthenticator(credential)); in doesNotAttemptAuthorization21Times()

123456