HomeSort by relevance Sort by last modified time
    Searched full:cleartext (Results 1 - 25 of 125) sorted by null

1 2 3 4 5

  /cts/tests/tests/netsecpolicy/usescleartexttraffic-false/src/android/security/
NetworkSecurityPolicyCleartextDeniedTest.java 6 super(false // expect cleartext traffic to be blocked
  /cts/tests/tests/netsecpolicy/usescleartexttraffic-true/src/android/security/
NetworkSecurityPolicyCleartextPermittedTest.java 6 super(true // expect cleartext traffic to be permitted
  /cts/tests/tests/netsecpolicy/usescleartexttraffic-unspecified/src/android/security/
NetworkSecurityPolicyCleartextUnspecifiedTest.java 6 super(true // expect cleartext traffic to be permitted
  /cts/tests/tests/networksecurityconfig/networksecurityconfig-attributes/res/xml/
network_security_config.xml 5 <!-- Cleartext traffic is not permitted for connections to foo.bar -->
13 <!-- Cleartext traffic is explicitly permitted to example.com and all subdomains -->
  /frameworks/base/core/java/android/security/
NetworkSecurityPolicy.java 31 * <p>The policy currently consists of a single flag: whether cleartext network traffic is
51 * Returns whether cleartext network traffic (e.g. HTTP, FTP, WebSockets, XMPP, IMAP, SMTP --
54 * <p>When cleartext network traffic is not permitted, the platform's components (e.g. HTTP and
56 * refuse this process's requests to use cleartext traffic. Third-party libraries are strongly
60 * cleartext traffic from Android applications given the level of access provided to them. For
62 * because it cannot determine whether its traffic is in cleartext. However, most network
73 * Returns whether cleartext network traffic (e.g. HTTP, FTP, XMPP, IMAP, SMTP -- without
84 * Sets whether cleartext network traffic is permitted for this process.
  /libcore/luni/src/main/java/libcore/net/
NetworkSecurityPolicy.java 26 * <p>The policy currently consists of a single flag: whether cleartext network traffic is
45 * Returns {@code true} if cleartext network traffic (e.g. HTTP, FTP, XMPP, IMAP, SMTP --
48 * <p>{@link #isCleartextTrafficPermitted(String)} should be used to determine if cleartext
51 * <p>When cleartext network traffic is not permitted, the platform's components (e.g. HTTP
53 * cleartext traffic. Third-party libraries are encouraged to do the same.
56 * cleartext traffic from an application given the level of access provided to applications on
66 * Returns {@code true} if cleartext network traffic (e.g. HTTP, FTP, XMPP, IMAP, SMTP --
  /cts/tests/tests/networksecurityconfig/networksecurityconfig-attributes/src/android/security/net/config/cts/
TestAttributes.java 25 // Since there are some configs that do not allow cleartext the non-hostname aware version
28 // Domain that explicitly does not allow cleartext traffic.
36 // Domains in a domain-config that explicitly allow cleartext.
  /packages/providers/DownloadProvider/src/com/android/providers/downloads/
RealSystemFacade.java 90 // Unknown UID -- fail safe: cleartext traffic not permitted
94 // Cleartext traffic is permitted from the UID if it's permitted for any of the packages
120 * Returns whether cleartext network traffic (HTTP) is permitted for the provided package.
128 // Unknown package -- fail safe: cleartext traffic not permitted
133 // No app info -- fail safe: cleartext traffic not permitted
SystemFacade.java 62 * Returns true if cleartext network traffic is permitted for the specified UID.
  /external/chromium-trace/catapult/third_party/gsutil/third_party/rsa/rsa/
bigfile.py 48 :param infile: file-like object to read the cleartext from
74 :param outfile: file-like object to write the cleartext to
83 cleartext = pkcs1.decrypt(block, priv_key)
84 outfile.write(cleartext)
__init__.py 22 cleartext input to prevent repetitions, or other common security improvements.
pkcs1.py 177 The decryption is considered 'failed' when the resulting cleartext doesn't
228 cleartext = transform.int2bytes(decrypted, blocksize)
230 # If we can't find the cleartext marker, decryption failed.
231 if cleartext[0:2] != b('\x00\x02'):
236 sep_idx = cleartext.index(b('\x00'), 2)
240 return cleartext[sep_idx+1:]
269 cleartext = asn1code + hash
271 padded = _pad_for_signing(cleartext, keylength)
  /frameworks/base/core/tests/coretests/src/android/widget/
AutoCompleteTextViewPopup.java 72 clearText(textView);
99 clearText(textView);
132 clearText(textView);
166 clearText(textView);
221 clearText(textView);
253 private void clearText(final AutoCompleteTextView textView) throws Throwable {
  /libcore/luni/src/test/java/libcore/net/
NetworkSecurityPolicyTest.java 95 // Assert that client transmits some data when cleartext traffic is permitted.
107 // Assert that client does not transmit any data when cleartext traffic is not permitted and
122 // Assert that client transmits some data when cleartext traffic is permitted.
135 // Assert that client does not transmit any data when cleartext traffic is not permitted and
150 // Assert that client transmits some data when cleartext traffic is permitted.
162 // Assert that client does not transmit any data when cleartext traffic is not permitted and
177 // Assert that client transmits some data when cleartext traffic is permitted.
190 // Assert that client does not transmit any data when cleartext traffic is not permitted and
205 // Assert that client transmits some data when cleartext traffic is permitted.
219 // Assert that client does not transmit any data when cleartext traffic is not permitted
    [all...]
  /cts/tests/tests/os/src/android/os/cts/
StrictModeTest.java 63 final String msg = "Detected cleartext network traffic from UID "
71 assertTrue("Expected cleartext to be caught", readLogSince(millis).contains(msg));
86 final String msg = "Detected cleartext network traffic from UID "
  /external/okhttp/android/main/java/com/squareup/okhttp/
HttpHandler.java 36 Collections.singletonList(ConnectionSpec.CLEARTEXT);
87 // Permit cleartext traffic only (this is a handler for HTTP, not for HTTPS).
115 throw new IOException("Cleartext HTTP traffic to " + host + " not permitted");
  /cts/tests/tests/widget/src/android/widget/cts/
DialerFilterTest.java 102 mDialerFilter.clearText();
123 mDialerFilter.clearText();
142 mDialerFilter.clearText();
212 mDialerFilter.clearText();
219 mDialerFilter.clearText();
226 mDialerFilter.clearText();
233 mDialerFilter.clearText();
258 mDialerFilter.clearText();
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/sensors/
RotationVectorTestActivity.java 88 clearText();
92 clearText();
105 clearText();
109 clearText();
  /cts/tests/tests/netsecpolicy/usescleartexttraffic-false/
AndroidManifest.xml 29 android:label="Tests for NetworkSecurityPolicy cleartext traffic policy when it is set to denied.">
  /cts/tests/tests/netsecpolicy/usescleartexttraffic-true/
AndroidManifest.xml 29 android:label="Tests for NetworkSecurityPolicy cleartext traffic policy when it is set to permitted.">
  /cts/tests/tests/netsecpolicy/usescleartexttraffic-unspecified/
AndroidManifest.xml 29 android:label="Tests for NetworkSecurityPolicy cleartext traffic policy when it is not specified.">
  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/
ConnectionSpec.java 68 public static final ConnectionSpec CLEARTEXT = new Builder(false).build();
289 if (!tls) throw new IllegalStateException("no cipher suites for cleartext connections");
301 if (!tls) throw new IllegalStateException("no cipher suites for cleartext connections");
314 if (!tls) throw new IllegalStateException("no TLS versions for cleartext connections");
329 if (!tls) throw new IllegalStateException("no TLS versions for cleartext connections");
342 if (!tls) throw new IllegalStateException("no TLS extensions for cleartext connections");
  /cts/tests/tests/netsecpolicy/src/android/security/
NetworkSecurityPolicyTestBase.java 102 if ((e.getMessage() == null) || (!e.getMessage().toLowerCase().contains("cleartext"))) {
103 fail("Exception with which request failed does not mention cleartext: " + e);
142 if ((e.getMessage() == null) || (!e.getMessage().toLowerCase().contains("cleartext"))) {
143 fail("Exception with which request failed does not mention cleartext: " + e);
  /docs/source.android.com/src/security/enhancements/
enhancements60.jd 29 cleartext.</li>
  /external/pdfium/xfa/include/fwl/lightwidget/
edit.h 21 FWL_ERR ClearText();

Completed in 3197 milliseconds

1 2 3 4 5