/external/webrtc/webrtc/libjingle/xmpp/ |
saslplainmechanism.h | 32 rtc::FormatCryptString credential; local 33 credential.Append("\0", 1); 34 credential.Append(user_jid_.node()); 35 credential.Append("\0", 1); 36 credential.Append(&password_); 37 el->AddText(Base64EncodeFromArray(credential.GetData(), credential.GetLength()));
|
saslcookiemechanism.h | 51 std::string credential; local 52 credential.append("\0", 1); 53 credential.append(username_); 54 credential.append("\0", 1); 55 credential.append(cookie_); 56 el->AddText(Base64Encode(credential));
|
/packages/apps/Email/emailcommon/src/com/android/emailcommon/provider/ |
Credential.java | 18 public class Credential extends EmailContent implements Parcelable, BaseColumns { 20 public static final String TABLE_NAME = "Credential"; 23 public static final Credential EMPTY = new Credential(-1, "", "", "", 0); 26 CONTENT_URI = Uri.parse(EmailContent.CONTENT_URI + "/credential"); 63 public Credential() { 67 public Credential(long id, String providerId, String accessToken, String refreshToken, 78 * Restore a Credential from the database, given its unique id 79 * @return the instantiated Credential 81 public static Credential restoreCredentialsWithId(Context context, long id) [all...] |
/packages/apps/Settings/tests/unit/src/com/android/settings/ |
UserCredentialsTest.java | 23 import static com.android.settings.UserCredentialsSettings.Credential; 38 final String alias = "credential-test-alias"; 39 Credential c = new Credential(alias); 41 c.storedTypes.add(Credential.Type.CA_CERTIFICATE); 42 c.storedTypes.add(Credential.Type.USER_SECRET_KEY); 48 Credential r = Credential.CREATOR.createFromParcel(p);
|
/external/webrtc/webrtc/examples/objc/AppRTCDemo/ |
RTCICEServer+JSON.m | 17 static NSString const *kRTCICEServerCredentialKey = @"credential"; 24 NSString *credential = dictionary[kRTCICEServerCredentialKey]; 26 credential = credential ? credential : @""; 29 password:credential];
|
/external/webrtc/webrtc/api/objc/ |
RTCIceServer.h | 23 /** Credential to use if this RTCIceServer object is a TURN server. */ 24 @property(nonatomic, copy, readonly, nullable) NSString *credential; variable 33 * optional credential, and credentialType. 37 credential:(nullable NSString *)credential
|
RTCIceServer.mm | 20 @synthesize credential = _credential; 26 credential:nil]; 31 credential:(NSString *)credential { 36 _credential = [credential copy];
|
/packages/apps/Settings/src/com/android/settings/ |
UserCredentialsSettings.java | 81 // Set up an OnItemClickListener for the credential list. 90 final Credential item = (Credential) parent.getItemAtPosition(position); 102 private static final String ARG_CREDENTIAL = "credential"; 104 public static void show(Fragment target, Credential item) { 118 final Credential item = (Credential) getArguments().getParcelable(ARG_CREDENTIAL); 123 new Credential[] {item}).getView(0, null, null); 199 private class AliasLoader extends AsyncTask<Void, Void, SortedMap<String, Credential>> { 201 protected SortedMap<String, Credential> doInBackground(Void... params) [all...] |
/external/chromium-trace/catapult/third_party/gsutil/third_party/oauth2client/oauth2client/ |
multistore_file.py | 15 """Multi-credential file store with lock support. 17 This module implements a JSON credential store where multiple 21 The credential themselves are keyed off of: 38 'credential': { 72 """The credential store is a newer version than supported.""" 78 """Get a Storage instance for a credential. 82 client_id: The client_id for the credential 83 user_agent: The user agent for the credential 89 credential. 101 """Get a Storage instance for a credential using a single string as a key [all...] |
django_orm.py | 81 """Store and retrieve a single credential to and from 104 """Retrieve Credential from datastore. 109 credential = None 114 credential = getattr(entities[0], self.property_name) 115 if credential and hasattr(credential, 'set_store'): 116 credential.set_store(self) 117 return credential
|
/external/jetty/src/java/org/eclipse/jetty/util/security/ |
Credential.java | 31 * Credentials. The Credential class represents an abstract mechanism for 32 * checking authentication credentials. A credential instance either represents 35 * Often a Credential is related to a Password via a one way algorithm, so while 36 * a Password itself is a Credential, a UnixCrypt or MD5 digest of a a password 37 * is only a credential that can be checked against the password. 44 public abstract class Credential implements Serializable 46 private static final Logger LOG = Log.getLogger(Credential.class); 52 * Check a credential 54 * @param credentials The credential to check against. This may either be 55 * another Credential object, a Password object or a Strin [all...] |
/external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/internal/ |
RecordingOkAuthenticator.java | 28 public final String credential; field in class:RecordingOkAuthenticator 30 public RecordingOkAuthenticator(String credential) { 31 this.credential = credential; 48 .addHeader("Authorization", credential) 56 .addHeader("Proxy-Authorization", credential)
|
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/ |
Authenticator.java | 26 * Returns a request that includes a credential to satisfy an authentication 31 * <p>Typical implementations will look up a credential and create a request 35 * String credential = Credentials.basic(...) 37 * .header("Authorization", credential) 44 * Returns a request that includes a credential to satisfy an authentication 49 * <p>Typical implementations will look up a credential and create a request 53 * String credential = Credentials.basic(...) 55 * .header("Proxy-Authorization", credential)
|
/frameworks/base/packages/Osu/src/com/android/configparse/ |
ConfigBuilder.java | 15 import com.android.hotspot2.pps.Credential; 38 Credential credential = homeSP.getCredential(); local 42 EAP.EAPMethodID eapMethodID = credential.getEAPMethod().getEAPMethodID(); 69 enterpriseConfig.setAnonymousIdentity("anonymous@" + credential.getRealm()); 100 Credential credential = homeSP.getCredential(); local 102 if (credential.getUserName() == null || credential.getPassword() == null) { 106 EAPMethod eapMethod = credential.getEAPMethod() 129 Credential credential = homeSP.getCredential(); local 168 Credential credential = homeSP.getCredential(); local [all...] |
/development/samples/browseable/ConfirmCredential/ |
_index.jd | 2 page.tags="Confirm Credential"
|
/external/chromium-trace/catapult/telemetry/telemetry/internal/testing/archive_files/ |
test_simple_one_page_set.py | 12 credentials_path='data/credential')
|
test_simple_two_page_set.py | 12 credentials_path='data/credential')
|
/frameworks/base/packages/Osu/src/com/android/anqp/eap/ |
Credential.java | 11 public class Credential implements AuthParam { 29 public Credential(EAP.AuthInfoID infoID, int length, ByteBuffer payload) 57 } else if (thatObject == null || thatObject.getClass() != Credential.class) { 60 return ((Credential) thatObject).getCredType() == getCredType();
|
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/anqp/eap/ |
Credential.java | 11 public class Credential implements AuthParam { 29 public Credential(EAP.AuthInfoID infoID, int length, ByteBuffer payload) 57 } else if (thatObject == null || thatObject.getClass() != Credential.class) { 60 return ((Credential) thatObject).getCredType() == getCredType();
|
/external/tpm2/ |
MakeCredential.c | 17 // TPM_RC_SIZE credential is larger than the digest size of Name algorithm of handle 44 // The credential information may not be larger than the digest size used for 46 if(in->credential.t.size > CryptGetHashDigestSize(object->publicArea.nameAlg)) 58 // Prepare output credential data from secret 59 SecretToCredential(&in->credential, &in->objectName, (TPM2B_SEED *) &data,
|
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/anqp/ |
NAIRealmElement.java | 6 import com.android.server.wifi.hotspot2.pps.Credential; 49 public int match(Credential credential) { 53 List<String> credLabels = Utils.splitDomain(credential.getRealm()); 56 int match = realmData.match(credLabels, credential);
|
/packages/apps/Email/provider_src/com/android/email/mail/internet/ |
AuthenticationCache.java | 11 import com.android.emailcommon.provider.Credential; 65 // If we start to allow different credential objects for sending and receiving, this 99 final Credential credential = hostAuth.getOrCreateCredential(context); local 100 entry = new CacheEntry(account.mId, credential.mProviderId, credential.mAccessToken, 101 credential.mRefreshToken, credential.mExpiration); 108 final Credential credential = hostAuth.getCredential(context) local [all...] |
/external/jetty/src/java/org/eclipse/jetty/security/authentication/ |
LoginCallbackImpl.java | 40 private Object credential; field in class:LoginCallbackImpl 48 //TODO could use Credential instance instead of Object if Basic/Form create a Password object 49 public LoginCallbackImpl (Subject subject, String userName, Object credential) 53 this.credential = credential; 68 return credential; 103 if (credential != null) 105 credential = null;
|
/frameworks/base/packages/Osu/src/com/android/hotspot2/pps/ |
Credential.java | 14 public class Credential { 38 public Credential(long ctime, long expTime, String realm, boolean checkAAACert, 66 public Credential(long ctime, long expTime, String realm, boolean checkAAACert, 67 EAPMethod eapMethod, Credential.CertType certType, byte[] fingerPrint) { 86 public Credential(long ctime, long expTime, String realm, boolean checkAAACert, 106 public Credential(Credential other, String password) { 178 Credential that = (Credential) o; 235 return "Credential{" [all...] |
/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/ |
wincred.h | 164 __MINGW_TYPEDEF_AW(CREDENTIAL) 283 WINADVAPI WINBOOL WINAPI CredWriteW(PCREDENTIALW Credential,DWORD Flags); 284 WINADVAPI WINBOOL WINAPI CredWriteA(PCREDENTIALA Credential,DWORD Flags); 285 WINADVAPI WINBOOL WINAPI CredReadW(LPCWSTR TargetName,DWORD Type,DWORD Flags,PCREDENTIALW *Credential); 286 WINADVAPI WINBOOL WINAPI CredReadA(LPCSTR TargetName,DWORD Type,DWORD Flags,PCREDENTIALA *Credential); 287 WINADVAPI WINBOOL WINAPI CredEnumerateW(LPCWSTR Filter,DWORD Flags,DWORD *Count,PCREDENTIALW **Credential); 288 WINADVAPI WINBOOL WINAPI CredEnumerateA(LPCSTR Filter,DWORD Flags,DWORD *Count,PCREDENTIALA **Credential); 289 WINADVAPI WINBOOL WINAPI CredWriteDomainCredentialsW(PCREDENTIAL_TARGET_INFORMATIONW TargetInfo,PCREDENTIALW Credential,DWORD Flags); 290 WINADVAPI WINBOOL WINAPI CredWriteDomainCredentialsA(PCREDENTIAL_TARGET_INFORMATIONA TargetInfo,PCREDENTIALA Credential,DWORD Flags); 294 WINADVAPI WINBOOL WINAPI CredReadDomainCredentialsW(PCREDENTIAL_TARGET_INFORMATIONW TargetInfo,DWORD Flags,DWORD *Count,PCREDENTIALW **Credential); [all...] |