Home
last modified time | relevance | path

Searched refs:algorithm (Results 1 – 4 of 4) sorted by relevance

/packages/apps/CertInstaller/src/com/android/certinstaller/
DUtil.java59 MessageDigest algorithm = MessageDigest.getInstance("MD5"); in toMd5() local
60 algorithm.reset(); in toMd5()
61 algorithm.update(bytes); in toMd5()
62 return toHexString(algorithm.digest(), ""); in toMd5()
/packages/apps/Email/emailcommon/src/com/android/emailcommon/utility/
DSSLSocketFactory.java178 String algorithm, in SSLSocketFactory() argument
187 if (algorithm == null) { in SSLSocketFactory()
188 algorithm = TLS; in SSLSocketFactory()
198 sslcontext = SSLContext.getInstance(algorithm); in SSLSocketFactory()
/packages/providers/ContactsProvider/src/com/android/providers/contacts/aggregation/util/
DContactMatcher.java279 int nameType, String name, int algorithm) { in matchName() argument
290 if (algorithm == MATCHING_ALGORITHM_EXACT) { in matchName()
302 NameDistance nameDistance = algorithm == MATCHING_ALGORITHM_CONSERVATIVE ? in matchName()
/packages/providers/ContactsProvider/src/com/android/providers/contacts/aggregation/
DContactAggregator.java1668 MatchCandidateList candidates, ContactMatcher matcher, int algorithm, String limit) { in matchAllCandidates() argument
1684 nameType, name, algorithm); in matchAllCandidates()