/external/pdfium/testing/ |
D | SUPPRESSIONS | 10 # Column 1: platform: *, win, mac, linux 24 font_size.in mac * * 29 050_extra_m.pdf mac,win * * 30 12.pdf mac * * 35 1_matrix.pdf mac * * 36 1m_diff_lsjdf.pdf mac * * 37 1m_same_xxxx.pdf mac * * 38 2_11_stamp3.pdf mac * * 40 2_color_calrgb.pdf mac * * 41 2_color_indexed.pdf mac * * [all …]
|
/external/openssh/ |
D | mac.c | 114 mac_setup_by_alg(struct sshmac *mac, const struct macalg *macalg) in mac_setup_by_alg() argument 116 mac->type = macalg->type; in mac_setup_by_alg() 117 if (mac->type == SSH_DIGEST) { in mac_setup_by_alg() 118 if ((mac->hmac_ctx = ssh_hmac_start(macalg->alg)) == NULL) in mac_setup_by_alg() 120 mac->key_len = mac->mac_len = ssh_hmac_bytes(macalg->alg); in mac_setup_by_alg() 122 mac->mac_len = macalg->len / 8; in mac_setup_by_alg() 123 mac->key_len = macalg->key_len / 8; in mac_setup_by_alg() 124 mac->umac_ctx = NULL; in mac_setup_by_alg() 127 mac->mac_len = macalg->truncatebits / 8; in mac_setup_by_alg() 128 mac->etm = macalg->etm; in mac_setup_by_alg() [all …]
|
/external/boringssl/src/crypto/poly1305/ |
D | poly1305_test.cc | 30 const std::vector<uint8_t> &mac) { in TestSIMD() argument 67 if (!t->ExpectBytesEqual(mac.data(), mac.size(), out, 16)) { in TestSIMD() 76 std::vector<uint8_t> key, in, mac; in TestPoly1305() local 79 !t->GetBytes(&mac, "MAC")) { in TestPoly1305() 82 if (key.size() != 32 || mac.size() != 16) { in TestPoly1305() 94 if (!t->ExpectBytesEqual(out, 16, mac.data(), mac.size())) { in TestPoly1305() 105 if (!t->ExpectBytesEqual(mac.data(), mac.size(), out, 16)) { in TestPoly1305() 112 if (!TestSIMD(t, 0, key, in, mac) || in TestPoly1305() 113 !TestSIMD(t, 16, key, in, mac) || in TestPoly1305() 114 !TestSIMD(t, 32, key, in, mac) || in TestPoly1305() [all …]
|
/external/boringssl/src/crypto/cipher/test/ |
D | make_all_legacy_aead_tests.sh | 5 go run make_legacy_aead_tests.go -cipher aes128 -mac sha1 > aes_128_cbc_sha1_tls_tests.txt 6 go run make_legacy_aead_tests.go -cipher aes128 -mac sha1 -implicit-iv > aes_128_cbc_sha1_tls_impli… 7 go run make_legacy_aead_tests.go -cipher aes128 -mac sha256 > aes_128_cbc_sha256_tls_tests.txt 9 go run make_legacy_aead_tests.go -cipher aes256 -mac sha1 > aes_256_cbc_sha1_tls_tests.txt 10 go run make_legacy_aead_tests.go -cipher aes256 -mac sha1 -implicit-iv > aes_256_cbc_sha1_tls_impli… 11 go run make_legacy_aead_tests.go -cipher aes256 -mac sha256 > aes_256_cbc_sha256_tls_tests.txt 12 go run make_legacy_aead_tests.go -cipher aes256 -mac sha384 > aes_256_cbc_sha384_tls_tests.txt 14 go run make_legacy_aead_tests.go -cipher 3des -mac sha1 > des_ede3_cbc_sha1_tls_tests.txt 15 go run make_legacy_aead_tests.go -cipher 3des -mac sha1 -implicit-iv > des_ede3_cbc_sha1_tls_implic… 17 go run make_legacy_aead_tests.go -cipher aes128 -mac sha1 -ssl3 > aes_128_cbc_sha1_ssl3_tests.txt [all …]
|
/external/autotest/server/cros/ |
D | chaos_dynamic_ap_list.conf | 9 wan mac = 68:7f:74:c7:f7:74 22 wan mac = c8:d7:19:06:1b:8e 35 wan mac = c8:d7:19:06:1b:8e 57 wan mac = 00:23:69:7e:bc:d2 67 wan mac = 98:fc:11:47:21:31 80 wan mac = 58:6d:8f:ff:18:71 93 wan mac = 58:6d:8f:ff:18:71 106 wan mac = 20:aa:4b:84:af:af 128 wan mac = 20:aa:4b:cd:67:e4 160 wan mac = 68:7f:74:25:8e:61 [all …]
|
D | casey_chromeos7_ap_list.conf | 12 wan mac = 84:1b:5e:6d:33:0f 25 wan mac = a0:f3:c1:cf:d0:87 38 wan mac = c8:d7:19:d8:c1:0a 51 wan mac = c8:d7:19:d8:c1:0a 65 wan mac = 00:25:9c:ca:63:26 80 wan mac = 94:10:3e:b8:59:a6 93 wan mac = b0:c7:45:6d:77:93 110 wan mac = 10:0d:7f:ac:1b:41 123 wan mac = 00:0f:b5:a8:07:d3 136 wan mac = 04:a1:51:e2:28:cf [all …]
|
/external/google-breakpad/src/common/ |
D | common.gyp | 32 ['OS=="mac"', { 117 'mac/arch_utilities.cc', 118 'mac/arch_utilities.h', 119 'mac/bootstrap_compat.cc', 120 'mac/bootstrap_compat.h', 121 'mac/byteswap.h', 122 'mac/dump_syms.h', 123 'mac/dump_syms.mm', 124 'mac/file_id.cc', 125 'mac/file_id.h', [all …]
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/io/ |
D | MacOutputStream.java | 11 protected Mac mac; field in MacOutputStream 14 Mac mac) in MacOutputStream() argument 16 this.mac = mac; in MacOutputStream() 22 mac.update((byte)b); in write() 31 mac.update(b, off, len); in write() 36 byte[] res = new byte[mac.getMacSize()]; in getMac() 38 mac.doFinal(res, 0); in getMac()
|
D | MacInputStream.java | 12 protected Mac mac; field in MacInputStream 16 Mac mac) in MacInputStream() argument 19 this.mac = mac; in MacInputStream() 29 mac.update((byte)b); in read() 43 mac.update(b, off, n); in read() 50 return mac; in getMac()
|
/external/syslinux/gpxe/src/drivers/net/ |
D | ipoib.c | 108 struct ipoib_mac mac; member 152 static struct ipoib_peer * ipoib_cache_peer ( const struct ipoib_mac *mac ) { in ipoib_cache_peer() argument 160 if ( memcmp ( &peer->mac, mac, sizeof ( peer->mac ) ) == 0 ) in ipoib_cache_peer() 172 memcpy ( &peer->mac, mac, sizeof ( peer->mac ) ); in ipoib_cache_peer() 174 peer->key, ipoib_ntoa ( &peer->mac ) ); in ipoib_cache_peer() 253 *ll_dest = ( dest ? &dest->mac : &ipoib->broadcast ); in ipoib_pull() 254 *ll_source = ( source ? &source->mac : &ipoib->broadcast ); in ipoib_pull() 268 struct ipoib_mac *mac = ll_addr; in ipoib_init_addr() local 270 memset ( mac, 0, sizeof ( *mac ) ); in ipoib_init_addr() 271 memcpy ( &mac->gid.u.half[1], guid, sizeof ( mac->gid.u.half[1] ) ); in ipoib_init_addr() [all …]
|
/external/iptables/extensions/ |
D | libxt_mac.t | 2 -m mac --mac-source 42:01:02:03:04:05;=;OK 3 -m mac --mac-source 42:01:02:03:04;=;FAIL 4 -m mac --mac-source 42:01:02:03:04:05:06;=;FAIL 5 -m mac;;FAIL
|
/external/webrtc/webrtc/modules/video_capture/ |
D | video_capture.gypi | 71 ['OS=="mac"', { 73 'mac/qtkit/video_capture_qtkit.h', 74 'mac/qtkit/video_capture_qtkit.mm', 75 'mac/qtkit/video_capture_qtkit_info.h', 76 'mac/qtkit/video_capture_qtkit_info.mm', 77 'mac/qtkit/video_capture_qtkit_info_objc.h', 78 'mac/qtkit/video_capture_qtkit_info_objc.mm', 79 'mac/qtkit/video_capture_qtkit_objc.h', 80 'mac/qtkit/video_capture_qtkit_objc.mm', 81 'mac/qtkit/video_capture_qtkit_utility.h', [all …]
|
/external/tcpdump/tests/ |
D | sflow_multiple_counter_30_pdus.out | 13 deferred 0, late collision 0, excessive collision 0, mac trans error 0 14 carrier error 0, frames too long 0, mac receive errors 0, symbol errors 0 25 deferred 0, late collision 0, excessive collision 0, mac trans error 0 26 carrier error 0, frames too long 0, mac receive errors 0, symbol errors 0 37 deferred 0, late collision 0, excessive collision 0, mac trans error 0 38 carrier error 0, frames too long 0, mac receive errors 0, symbol errors 0 49 deferred 0, late collision 0, excessive collision 0, mac trans error 0 50 carrier error 0, frames too long 0, mac receive errors 0, symbol errors 0 61 deferred 0, late collision 0, excessive collision 0, mac trans error 0 62 carrier error 0, frames too long 0, mac receive errors 0, symbol errors 0 [all …]
|
/external/mmc-utils/3rdparty/hmac_sha/ |
D | hmac_sha2.c | 105 void hmac_sha224_final(hmac_sha224_ctx *ctx, unsigned char *mac, in hmac_sha224_final() argument 114 memcpy(mac, mac_temp, mac_size); in hmac_sha224_final() 119 unsigned char *mac, unsigned mac_size) in hmac_sha224() argument 125 hmac_sha224_final(&ctx, mac, mac_size); in hmac_sha224() 191 void hmac_sha256_final(hmac_sha256_ctx *ctx, unsigned char *mac, in hmac_sha256_final() argument 200 memcpy(mac, mac_temp, mac_size); in hmac_sha256_final() 205 unsigned char *mac, unsigned mac_size) in hmac_sha256() argument 211 hmac_sha256_final(&ctx, mac, mac_size); in hmac_sha256() 277 void hmac_sha384_final(hmac_sha384_ctx *ctx, unsigned char *mac, in hmac_sha384_final() argument 286 memcpy(mac, mac_temp, mac_size); in hmac_sha384_final() [all …]
|
D | hmac_sha2.h | 100 void hmac_sha224_final(hmac_sha224_ctx *ctx, unsigned char *mac, 104 unsigned char *mac, unsigned mac_size); 111 void hmac_sha256_final(hmac_sha256_ctx *ctx, unsigned char *mac, 115 unsigned char *mac, unsigned mac_size); 122 void hmac_sha384_final(hmac_sha384_ctx *ctx, unsigned char *mac, 126 unsigned char *mac, unsigned mac_size); 133 void hmac_sha512_final(hmac_sha512_ctx *ctx, unsigned char *mac, 137 unsigned char *mac, unsigned mac_size);
|
/external/libchrome/base/ |
D | base.gypi | 282 'mac/authorization_util.h', 283 'mac/authorization_util.mm', 284 'mac/bind_objc_block.h', 285 'mac/bundle_locations.h', 286 'mac/bundle_locations.mm', 287 'mac/call_with_eh_frame.cc', 288 'mac/call_with_eh_frame.h', 289 'mac/call_with_eh_frame_asm.S', 290 'mac/close_nocancel.cc', 291 'mac/cocoa_protocols.h', [all …]
|
/external/wpa_supplicant_8/hostapd/logwatch/ |
D | hostapd | 29 if (my ($iface,$mac,$layer,$details) = ($line =~ /(.*?): STA (.*?) (.*?): (.*?)$/i)) { 34 $hostapd{$iface}->{$mac}->{$layer}->{$details}++; 43 foreach my $mac (sort keys %{$hostapd{$iface}}) { 44 print " Client MAC Address $mac:\n"; 45 foreach my $layer (sort keys %{$hostapd{$iface}->{$mac}}) { 47 foreach my $details (sort keys %{$hostapd{$iface}->{$mac}->{$layer}}) { 49 my $count = $hostapd{$iface}->{$mac}->{$layer}->{$details};
|
/external/ppp/pppd/plugins/rp-pppoe/ |
D | plugin.c | 173 unsigned int mac[ETH_ALEN]; in PPPOEConnectDevice() local 176 &ses, &mac[0], &mac[1], &mac[2], in PPPOEConnectDevice() 177 &mac[3], &mac[4], &mac[5]) != 7) { in PPPOEConnectDevice() 182 conn->peerEth[i] = (unsigned char) mac[i]; in PPPOEConnectDevice() 386 unsigned int mac[6]; in pppoe_check_options() local 391 &mac[0], &mac[1], &mac[2], &mac[3], in pppoe_check_options() 392 &mac[4], &mac[5]) != 6) { in pppoe_check_options() 397 conn->req_peer_mac[i] = mac[i]; in pppoe_check_options()
|
/external/webrtc/webrtc/modules/video_render/ |
D | video_render.gypi | 124 ['OS=="mac"', { 126 'mac/cocoa_full_screen_window.h', 127 'mac/cocoa_render_view.h', 128 'mac/video_render_agl.h', 129 'mac/video_render_mac_carbon_impl.h', 130 'mac/video_render_mac_cocoa_impl.h', 131 'mac/video_render_nsopengl.h', 132 'mac/video_render_nsopengl.mm', 133 'mac/video_render_mac_cocoa_impl.mm', 134 'mac/video_render_agl.cc', [all …]
|
D | BUILD.gn | 93 "mac/cocoa_full_screen_window.h", 94 "mac/cocoa_full_screen_window.mm", 95 "mac/cocoa_render_view.h", 96 "mac/cocoa_render_view.mm", 97 "mac/video_render_agl.cc", 98 "mac/video_render_agl.h", 99 "mac/video_render_mac_carbon_impl.cc", 100 "mac/video_render_mac_carbon_impl.h", 101 "mac/video_render_mac_cocoa_impl.h", 102 "mac/video_render_mac_cocoa_impl.mm", [all …]
|
/external/wpa_supplicant_8/src/crypto/ |
D | crypto_internal.c | 179 int crypto_hash_finish(struct crypto_hash *ctx, u8 *mac, size_t *len) in crypto_hash_finish() argument 187 if (mac == NULL || len == NULL) { in crypto_hash_finish() 200 MD5Final(mac, &ctx->u.md5); in crypto_hash_finish() 209 SHA1Final(mac, &ctx->u.sha1); in crypto_hash_finish() 219 sha256_done(&ctx->u.sha256, mac); in crypto_hash_finish() 230 sha384_done(&ctx->u.sha384, mac); in crypto_hash_finish() 241 sha512_done(&ctx->u.sha512, mac); in crypto_hash_finish() 252 MD5Final(mac, &ctx->u.md5); in crypto_hash_finish() 261 MD5Update(&ctx->u.md5, mac, 16); in crypto_hash_finish() 262 MD5Final(mac, &ctx->u.md5); in crypto_hash_finish() [all …]
|
D | aes-omac1.c | 44 const u8 *addr[], const size_t *len, u8 *mac) in omac1_aes_vector() argument 114 aes_encrypt(ctx, pad, mac); in omac1_aes_vector() 134 const u8 *addr[], const size_t *len, u8 *mac) in omac1_aes_128_vector() argument 136 return omac1_aes_vector(key, 16, num_elem, addr, len, mac); in omac1_aes_128_vector() 152 int omac1_aes_128(const u8 *key, const u8 *data, size_t data_len, u8 *mac) in omac1_aes_128() argument 154 return omac1_aes_128_vector(key, 1, &data, &data_len, mac); in omac1_aes_128() 170 int omac1_aes_256(const u8 *key, const u8 *data, size_t data_len, u8 *mac) in omac1_aes_256() argument 172 return omac1_aes_vector(key, 32, 1, &data, &data_len, mac); in omac1_aes_256()
|
/external/webrtc/webrtc/modules/desktop_capture/ |
D | desktop_capture.gypi | 43 "mac/desktop_configuration.h", 44 "mac/desktop_configuration.mm", 45 "mac/desktop_configuration_monitor.h", 46 "mac/desktop_configuration_monitor.cc", 47 "mac/full_screen_chrome_window_detector.cc", 48 "mac/full_screen_chrome_window_detector.h", 49 "mac/scoped_pixel_buffer_object.cc", 50 "mac/scoped_pixel_buffer_object.h", 51 "mac/window_list_utils.cc", 52 "mac/window_list_utils.h", [all …]
|
/external/boringssl/src/crypto/hmac/ |
D | hmac_test.cc | 108 std::unique_ptr<uint8_t[]> mac(new uint8_t[expected_mac_len]); in TestHMAC() local 111 input.size(), mac.get(), &mac_len) || in TestHMAC() 113 !t->ExpectBytesEqual(output.data(), output.size(), mac.get(), mac_len)) { in TestHMAC() 122 !HMAC_Final(ctx.get(), mac.get(), &mac_len) || in TestHMAC() 124 !t->ExpectBytesEqual(output.data(), output.size(), mac.get(), mac_len)) { in TestHMAC() 132 !HMAC_Final(ctx.get(), mac.get(), &mac_len) || in TestHMAC() 134 !t->ExpectBytesEqual(output.data(), output.size(), mac.get(), mac_len)) { in TestHMAC() 150 if (!HMAC_Final(ctx.get(), mac.get(), &mac_len) || in TestHMAC() 152 !t->ExpectBytesEqual(output.data(), output.size(), mac.get(), mac_len)) { in TestHMAC()
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/macs/ |
D | CBCBlockCipherMac.java | 16 private byte[] mac; field in CBCBlockCipherMac 99 mac = new byte[cipher.getBlockSize()]; in CBCBlockCipherMac() 128 cipher.processBlock(buf, 0, mac, 0); in update() 152 cipher.processBlock(buf, 0, mac, 0); in update() 160 cipher.processBlock(in, inOff, mac, 0); in update() 193 cipher.processBlock(buf, 0, mac, 0); in doFinal() 200 cipher.processBlock(buf, 0, mac, 0); in doFinal() 202 System.arraycopy(mac, 0, out, outOff, macSize); in doFinal()
|