Home
last modified time | relevance | path

Searched refs:getPassword (Results 1 – 25 of 46) sorted by relevance

12

/external/apache-harmony/crypto/src/test/api/java/org/apache/harmony/crypto/tests/javax/crypto/spec/
DPBEKeySpecTest.java46 + "char array.", pbeks.getPassword().length == 0); in testPBEKeySpec1()
56 password[0] == pbeks.getPassword()[0]); in testPBEKeySpec1()
75 + "char array.", pbeks.getPassword().length == 0); in testPBEKeySpec2()
131 password[0] == pbeks.getPassword()[0]); in testPBEKeySpec2()
152 + "char array.", pbeks.getPassword().length == 0); in testPBEKeySpec3()
194 password[0] == pbeks.getPassword()[0]); in testPBEKeySpec3()
210 pbeks.getPassword(); in testClearPassword()
225 char[] result = pbeks.getPassword(); in testGetPassword()
233 result[0] == pbeks.getPassword()[0]); in testGetPassword()
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/symmetric/util/
DBCPBEKey.java79 return PBEParametersGenerator.PKCS12PasswordToBytes(pbeKeySpec.getPassword()); in getEncoded()
83 return PBEParametersGenerator.PKCS5PasswordToUTF8Bytes(pbeKeySpec.getPassword()); in getEncoded()
87 return PBEParametersGenerator.PKCS5PasswordToBytes(pbeKeySpec.getPassword()); in getEncoded()
120 public char[] getPassword() in getPassword() method in BCPBEKey
122 return pbeKeySpec.getPassword(); in getPassword()
DPBE.java345 key = PBEParametersGenerator.PKCS12PasswordToBytes(keySpec.getPassword()); in convertPassword()
349 key = PBEParametersGenerator.PKCS5PasswordToUTF8Bytes(keySpec.getPassword()); in convertPassword()
353 key = PBEParametersGenerator.PKCS5PasswordToBytes(keySpec.getPassword()); in convertPassword()
/external/smack/src/org/jivesoftware/smackx/packet/
DMUCInitialPresence.java58 if (getPassword() != null) { in toXML()
59 buf.append("<password>").append(getPassword()).append("</password>"); in toXML()
84 public String getPassword() { in getPassword() method in MUCInitialPresence
DMUCUser.java61 if (getPassword() != null) { in toXML()
62 buf.append("<password>").append(getPassword()).append("</password>"); in toXML()
110 public String getPassword() { in getPassword() method in MUCUser
/external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/
DKSPasswordProtectionTest.java57 char[] rPass = ksPWP.getPassword(); in testGetPassword()
67 ksPWP.getPassword(); in testGetPassword()
DKeyStoreTest.java233 assertNull(new KeyStore.PasswordProtection(null).getPassword()); in testKeyStorePPGetPassword()
236 assertNotSame(pp.getPassword(), password); in testKeyStorePPGetPassword()
237 assertSame(pp.getPassword(), pp.getPassword()); in testKeyStorePPGetPassword()
/external/apache-harmony/x-net/src/test/java/javax/net/ssl/
DMyKeyManagerFactorySpi.java58 ((Parameters) spec).getPassword()); in engineInit()
85 public char[] getPassword() { in getPassword() method in MyKeyManagerFactorySpi.Parameters
/external/apache-harmony/x-net/src/test/support/common/java/org/apache/harmony/xnet/tests/support/
DMyKeyManagerFactorySpi.java58 ((Parameters) spec).getPassword()); in engineInit()
85 public char[] getPassword() { in getPassword() method in MyKeyManagerFactorySpi.Parameters
/external/apache-http/src/org/apache/http/impl/auth/
DBasicScheme.java173 tmp.append((credentials.getPassword() == null) ? "null" : credentials.getPassword()); in authenticate()
/external/chromium_org/sync/android/java/src/org/chromium/sync/signin/
DSystemAccountManagerDelegate.java82 public String getPassword(Account account) { in getPassword() method in SystemAccountManagerDelegate
83 return mAccountManager.getPassword(account); in getPassword()
/external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/
DLoginPrompt.java71 mAuthHandler.proceed(getUsername(), getPassword()); in createDialog()
104 private String getPassword() { in getPassword() method in LoginPrompt
/external/smack/src/org/jivesoftware/smack/
DNonSASLAuthentication.java52 return authenticate(username, String.valueOf(pcb.getPassword()),resource); in authenticate()
91 else if (authTypes.getPassword() != null) { in authenticate()
DServerTrustManager.java72 trustStore.load(in, options.getPassword().toCharArray()); in ServerTrustManager()
290 public String getPassword() { in getPassword() method in ServerTrustManager.KeyStoreOptions
DXMPPConnection.java829 ks.load(null,pcb.getPassword()); in proceedTLSReceived()
847 ks.load(new FileInputStream(config.getKeystorePath()), pcb.getPassword()); in proceedTLSReceived()
859 kmf.init(ks,pcb.getPassword()); in proceedTLSReceived()
1044 login(config.getUsername(), config.getPassword(), config.getResource()); in connect()
/external/nist-sip/java/gov/nist/javax/sip/clientauthutils/
DUserCredentials.java27 public String getPassword(); in getPassword() method
/external/apache-http/src/org/apache/http/auth/
DCredentials.java52 String getPassword(); in getPassword() method
DUsernamePasswordCredentials.java103 public String getPassword() { in getPassword() method in UsernamePasswordCredentials
/external/apache-harmony/crypto/src/test/api/java/org/apache/harmony/crypto/tests/javax/crypto/interfaces/
DPBEKeyTest.java85 public char[] getPassword() { in getPassword() method in PBEKeyTest.checkPBEKey
/external/smack/src/org/jivesoftware/smackx/bookmark/
DBookmarks.java204 if (conference.getPassword() != null) { in toXML()
205 buf.append("<password>").append(conference.getPassword()).append("</password>"); in toXML()
DBookmarkedConference.java107 public String getPassword() { in getPassword() method in BookmarkedConference
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/http/
DHttpAuthenticator.java54 return Credential.basic(auth.getUserName(), new String(auth.getPassword()));
74 return Credential.basic(auth.getUserName(), new String(auth.getPassword()));
/external/smack/src/org/apache/harmony/javax/security/auth/callback/
DPasswordCallback.java107 public char[] getPassword() { in getPassword() method in PasswordCallback
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/
DPBEParametersGenerator.java44 public byte[] getPassword() in getPassword() method in PBEParametersGenerator
/external/nist-sip/java/gov/nist/javax/sip/address/
DUserInfo.java142 public String getPassword() { in getPassword() method in UserInfo

12