| /src/crypto/external/apache2/openssl/dist/providers/implementations/include/prov/ |
| macsignature.h | 22 int cmac; member in struct:mac_key_st 27 MAC_KEY *ossl_mac_key_new(OSSL_LIB_CTX *libctx, int cmac);
|
| /src/crypto/external/bsd/openssl/dist/providers/implementations/include/prov/ |
| macsignature.h | 23 int cmac; member in struct:mac_key_st 28 MAC_KEY *ossl_mac_key_new(OSSL_LIB_CTX *libctx, int cmac);
|
| /src/external/bsd/ntp/dist/sntp/tests/ |
| crypto.c | 10 #define CMAC "AES128CMAC" 25 void VerifyLocalCMAC(struct key *cmac); 26 void VerifyOpenSSLCMAC(struct key *cmac); 108 struct key cmac; local 110 cmac.next = NULL; 111 cmac.key_id = 30; 112 cmac.key_len = CMAC_LENGTH; 113 memcpy(&cmac.key_seq, "aes-128-cmac-seq", cmac.key_len) 200 struct key cmac; local [all...] |
| /src/crypto/external/bsd/openssl/dist/include/crypto/ |
| modes.h | 155 } nonce, cmac; member in struct:ccm128_context
|
| /src/crypto/external/bsd/openssl.old/dist/crypto/modes/ |
| modes_local.h | 156 } nonce, cmac; member in struct:ccm128_context
|
| /src/crypto/external/apache2/openssl/dist/include/crypto/ |
| modes.h | 163 } nonce, cmac; member in struct:ccm128_context
|
| /src/external/bsd/wpa/dist/src/eap_peer/ |
| eap_fast.c | 770 u8 cmk[EAP_FAST_CMK_LEN], cmac[SHA1_MAC_LEN]; local 781 os_memcpy(cmac, _bind->compound_mac, sizeof(cmac)); 782 os_memset(_bind->compound_mac, 0, sizeof(cmac)); 787 res = os_memcmp_const(cmac, _bind->compound_mac, sizeof(cmac)); 789 cmac, sizeof(cmac)); 791 _bind->compound_mac, sizeof(cmac)); 794 os_memcpy(_bind->compound_mac, cmac, sizeof(cmac)) [all...] |
| /src/external/bsd/wpa/dist/src/eap_server/ |
| eap_server_fast.c | 1188 u8 cmac[SHA1_MAC_LEN]; local 1220 os_memcpy(cmac, b->compound_mac, sizeof(cmac)); 1221 os_memset(b->compound_mac, 0, sizeof(cmac)); 1227 if (os_memcmp_const(cmac, b->compound_mac, sizeof(cmac)) != 0) { 1230 b->compound_mac, sizeof(cmac));
|
| /src/external/bsd/wpa/dist/src/pae/ |
| ieee802_1x_kay.c | 1893 u8 cmac[MAX_ICV_LEN]; local 1907 wpabuf_head(buf), wpabuf_len(buf), cmac)) { 1911 wpa_hexdump(MSG_DEBUG, "KaY: ICV", cmac, length); 1913 os_memcpy(wpabuf_put(buf, length), cmac, length); local
|
| /src/external/bsd/wpa/dist/src/crypto/ |
| crypto_wolfssl.c | 22 #include <wolfssl/wolfcrypt/cmac.h> 1264 Cmac cmac; local 1271 if (wc_InitCmac(&cmac, key, key_len, WC_CMAC_AES, NULL) != 0) 1275 if (wc_CmacUpdate(&cmac, addr[i], len[i]) != 0) 1279 if (wc_CmacFinal(&cmac, mac, &sz) != 0 || sz != AES_BLOCK_SIZE)
|
| /src/sys/dev/pci/cxgb/ |
| cxgb_common.h | 463 struct cmac { struct 661 int t3_link_start(struct cphy *phy, struct cmac *mac, struct link_config *lc); 675 void mac_prep(struct cmac *mac, adapter_t *adapter, int index); 695 int t3_mac_reset(struct cmac *mac); 696 void t3b_pcs_reset(struct cmac *mac); 697 int t3_mac_enable(struct cmac *mac, int which); 698 int t3_mac_disable(struct cmac *mac, int which); 699 int t3_mac_set_mtu(struct cmac *mac, unsigned int mtu); 700 int t3_mac_set_rx_mode(struct cmac *mac, struct t3_rx_mode *rm); 701 int t3_mac_set_address(struct cmac *mac, unsigned int idx, u8 addr[6]) [all...] |