Home
last modified time | relevance | path

Searched refs:authenticate (Results 1 – 25 of 162) sorted by relevance

1234567

/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/util/
DICUBinaryTest.java78 ICUBinary.Authenticate authenticate in TestReadHeader() local
88 ICUBinary.readHeader(bytes, formatid, authenticate); in TestReadHeader()
103 ICUBinary.readHeader(bytes, formatid, authenticate); in TestReadHeader()
111 ICUBinary.readHeader(bytes, formatid, authenticate); in TestReadHeader()
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/util/
DICUBinaryTest.java75 ICUBinary.Authenticate authenticate in TestReadHeader() local
85 ICUBinary.readHeader(bytes, formatid, authenticate); in TestReadHeader()
100 ICUBinary.readHeader(bytes, formatid, authenticate); in TestReadHeader()
108 ICUBinary.readHeader(bytes, formatid, authenticate); in TestReadHeader()
/external/python/cryptography/docs/hazmat/primitives/mac/
Dpoly1305.rst13 produces a 16-byte tag. This tag is used to authenticate the message. Each key
26 to authenticate. If you are using this as a MAC for
35 >>> p.update(b"message to authenticate")
45 >>> p.update(b"message to authenticate")
59 :param data: The bytes to hash and authenticate.
96 :param data: The bytes to hash and authenticate.
107 >>> poly1305.Poly1305.generate_tag(key, b"message to authenticate")
117 :param data: The bytes to hash and authenticate.
129 >>> poly1305.Poly1305.verify_tag(key, b"message to authenticate", b"an incorrect tag")
Dcmac.rst32 >>> c.update(b"message to authenticate")
50 >>> c.update(b"message to authenticate")
68 :param bytes data: The bytes to hash and authenticate.
/external/libcups/conf/
Dcupsd.conf.in67 # All administration operations require an administrator to authenticate...
74 # All printer operations require a printer operator to authenticate...
81 # Only the owner or an administrator can cancel or authenticate a job...
112 # All administration operations require an administrator to authenticate...
119 # All printer operations require a printer operator to authenticate...
126 # Only the owner or an administrator can cancel or authenticate a job...
158 # All administration operations require an administrator to authenticate...
165 # All printer operations require a printer operator to authenticate...
172 # Only the owner or an administrator can cancel or authenticate a job...
/external/apache-http/src/org/apache/http/impl/auth/
DBasicScheme.java135 public Header authenticate( in authenticate() method in BasicScheme
147 return authenticate(credentials, charset, isProxy()); in authenticate()
159 public static Header authenticate( in authenticate() method in BasicScheme
/external/python/cpython3/Lib/test/
Dtest_imaplib.py317 code, _ = client.authenticate('MYAUTH', lambda x: b'fake')
339 typ, _ = client.authenticate('MYAUTH', lambda x: b'fake')
355 client.authenticate('METHOD', lambda: 1)
366 client.authenticate('MYAUTH', lambda x: b'fake')
375 code, _ = client.authenticate('MYAUTH', lambda x: b'fake')
386 code, _ = client.authenticate('MYAUTH', lambda x: 'fake')
441 client.authenticate('MYAUTH', lambda x: None)
691 code, data = client.authenticate('MYAUTH', lambda x: b'fake')
775 code, _ = client.authenticate('MYAUTH', lambda x: b'fake')
797 typ, _ = client.authenticate('MYAUTH', lambda x: b'fake')
[all …]
/external/mesa3d/src/gallium/auxiliary/vl/
Dvl_winsys_dri.c379 xcb_dri2_authenticate_reply_t *authenticate = NULL; in vl_dri2_screen_create() local
452 authenticate = xcb_dri2_authenticate_reply(scrn->conn, authenticate_cookie, NULL); in vl_dri2_screen_create()
454 if (authenticate == NULL || !authenticate->authenticated) in vl_dri2_screen_create()
475 free(authenticate); in vl_dri2_screen_create()
486 free(authenticate); in vl_dri2_screen_create()
/external/rust/crates/grpcio-sys/grpc/src/core/ext/transport/chttp2/transport/
Dhpack_tables.txt52 | 48 | proxy-authenticate | |
65 | 61 | www-authenticate | |
/external/grpc-grpc/src/core/ext/transport/chttp2/transport/
Dhpack_tables.txt52 | 48 | proxy-authenticate | |
65 | 61 | www-authenticate | |
/external/grpc-grpc/test/core/end2end/fuzzers/
Dhpack.dictionary90 "\x12proxy-authenticate"
102 "\x10www-authenticate"
169 "\x00\x12proxy-authenticate\x00"
182 "\x00\x10www-authenticate\x00"
/external/autotest/frontend/
Dapache_auth.py19 def authenticate(self, username=None, password=None): member in SimpleAuthBackend
82 user_object = auth.authenticate(username=username,
/external/arm-trusted-firmware/docs/getting_started/
Dimage-terminology.rst48 and authenticate an updateable AP firmware image into an executable RAM
56 required to load and authenticate all 3rd level firmware images into their
108 and authenticate an updateable SCP firmware image into an executable RAM
114 may directly load/authenticate its own firmware. In these systems, it doesn't
123 SCP needs to load/authenticate multiple 3rd level images in future.
141 with ``AP_BL1`` to authenticate those images.
/external/cronet/net/third_party/quiche/src/quiche/http2/hpack/
Dhpack_static_table_entries.inc52 STATIC_TABLE_ENTRY("proxy-authenticate", "", 48);
65 STATIC_TABLE_ENTRY("www-authenticate", "", 61);
/external/robolectric/robolectric/src/test/java/org/robolectric/shadows/
DShadowFingerprintManagerTest.java45 manager.authenticate(cryptoObject, null, 0, mockCallback, null); in authenticate_success()
62 manager.authenticate(cryptoObject, null, 0, mockCallback, null); in authenticate_failure()
/external/robolectric-shadows/robolectric/src/test/java/org/robolectric/shadows/
DShadowFingerprintManagerTest.java44 manager.authenticate(cryptoObject, null, 0, mockCallback, null); in authenticate_success()
61 manager.authenticate(cryptoObject, null, 0, mockCallback, null); in authenticate_failure()
/external/icu/android_icu4j/src/main/java/android/icu/impl/
DICUBinary.java570 Authenticate authenticate)
572 return getVersionInfoFromCompactInt(readHeader(bytes, dataFormat, authenticate));
587 public static int readHeader(ByteBuffer bytes, int dataFormat, Authenticate authenticate)
619 (authenticate != null && !authenticate.isDataVersionAcceptable(formatVersion))) {
/external/wpa_supplicant_8/hostapd/
Dhostapd.deny1 # List of MAC addresses that are not allowed to authenticate (IEEE 802.11)
Dhostapd.accept1 # List of MAC addresses that are allowed to authenticate (IEEE 802.11)
/external/okhttp/repackaged/okhttp/src/main/java/com/android/okhttp/
DAuthenticator.java43 Request authenticate(Proxy proxy, Response response) throws IOException; in authenticate() method
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/
DAuthenticator.java41 Request authenticate(Proxy proxy, Response response) throws IOException; in authenticate() method
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
DICUBinary.java565 Authenticate authenticate)
567 return getVersionInfoFromCompactInt(readHeader(bytes, dataFormat, authenticate));
582 public static int readHeader(ByteBuffer bytes, int dataFormat, Authenticate authenticate)
614 (authenticate != null && !authenticate.isDataVersionAcceptable(formatVersion))) {
/external/grpc-grpc/test/core/end2end/fuzzers/server_fuzzer_corpus/
Dslow-unit-c151762e5f37e233142059c1b269ce55434cf6a67 user-agent"bad-client grpc-c/0.12.0.0 (linux)�?����www-authenticate�������������������������������…
/external/apache-http/src/org/apache/http/auth/
DAuthScheme.java142 Header authenticate(Credentials credentials, HttpRequest request) in authenticate() method
/external/curl/tests/data/
Dtest16945 HTTP/1.1 401 You now need to authenticate with the host
61 HTTP/1.1 401 You now need to authenticate with the host

1234567