Home
last modified time | relevance | path

Searched full:macs (Results 1 – 25 of 214) sorted by relevance

123456789

/freebsd/crypto/openssh/regress/
H A Dputty-ciphers.sh10 # Since there doesn't seem to be a way to set MACs on the PuTTY client side,
14 macs=""
15 for m in `${SSH} -Q MACs`; do
17 macs="${macs} ${m}"
33 for m in default ${macs}; do
43 echo "MACs $m" >> ${OBJ}/sshd_proxy
H A Dcipher-speed.sh6 # Enable all supported ciphers and macs.
8 macs=`${SSH} -Q MACs | tr '\n' , | sed 's/,$//'`
11 MACs $macs
37 # No point trying all MACs for AEAD ciphers since they are ignored.
H A Dintegrity.sh10 macs=`${SSH} -Q mac`
11 # The following are not MACs, but ciphers with integrated integrity. They are
13 macs="$macs `${SSH} -Q cipher-auth`"
23 for m in $macs; do
45 echo "MACs=$m" >> $OBJ/sshd_proxy
H A Dssh-com.sh91 macs="hmac-md5"
95 macs="$macs hmac-sha1 hmac-sha1-96 hmac-md5-96"
99 macs="$macs hmac-sha1 hmac-sha1-96 hmac-md5-96"
103 for m in $macs; do
H A Ddropbear-ciphers.sh16 macs=`$DBCLIENT -m help 2>&1 | awk '/ MACs: /{print $4}' | tr ',' ' '`
20 for m in $macs; do
H A Dtry-ciphers.sh15 echo "MACs=$m" >> $OBJ/sshd_proxy
20 # No point trying all MACs for AEAD ciphers since they
/freebsd/sys/dev/wg/
H A Dwg_cookie.c143 struct cookie_macs *macs, uint8_t nonce[COOKIE_NONCE_SIZE], in cookie_checker_create_payload()
153 macs->mac1, COOKIE_MAC_SIZE, nonce, cc->cc_cookie_key); in cookie_checker_create_payload()
209 cookie_maker_mac(struct cookie_maker *cm, struct cookie_macs *macs, void *buf,
213 macs_mac1(macs, buf, len, cm->cm_mac1_key); in cookie_maker_mac()
214 memcpy(cm->cm_mac1_last, macs->mac1, COOKIE_MAC_SIZE); in cookie_maker_mac()
220 macs_mac2(macs, buf, len, cm->cm_cookie); in cookie_maker_mac()
222 bzero(macs->mac2, COOKIE_MAC_SIZE); in cookie_maker_mac()
229 cookie_checker_validate_macs(struct cookie_checker *cc, struct cookie_macs *macs,
235 /* Validate incoming MACs */ in cookie_checker_validate_macs()
241 if (timingsafe_bcmp(our_macs.mac1, macs in cookie_checker_validate_macs()
144 cookie_checker_create_payload(struct cookie_checker * cc,struct cookie_macs * macs,uint8_t nonce[COOKIE_NONCE_SIZE],uint8_t ecookie[COOKIE_ENCRYPTED_SIZE],struct sockaddr * sa) cookie_checker_create_payload() argument
210 cookie_maker_mac(struct cookie_maker * cm,struct cookie_macs * macs,void * buf,size_t len) cookie_maker_mac() argument
230 cookie_checker_validate_macs(struct cookie_checker * cc,struct cookie_macs * macs,void * buf,size_t len,bool check_cookie,struct sockaddr * sa,struct vnet * vnet) cookie_checker_validate_macs() argument
283 macs_mac1(struct cookie_macs * macs,const void * buf,size_t len,const uint8_t key[COOKIE_KEY_SIZE]) macs_mac1() argument
293 macs_mac2(struct cookie_macs * macs,const void * buf,size_t len,const uint8_t key[COOKIE_COOKIE_SIZE]) macs_mac2() argument
[all...]
/freebsd/tests/sys/netgraph/
H A Dng_macfilter_test.sh306 test_title "Test: Adding many MACs..."
321 test_eq $n $n2 'MACs in table for out1'
324 test_eq $n $n2 'MACs in table for out2'
327 test_eq $n $n2 'MACs in table for out3'
333 test_title "Test: Changing hooks for MACs..."
343 test_eq $n $n2 'MACs in table for out1'
346 test_eq $n $n2 'MACs in table for out2'
349 test_eq $n $n2 'MACs in table for out3'
355 test_title "Test: Removing all MACs one by one..."
369 test_eq $n $n2 'MACs in table'
[all …]
/freebsd/sys/contrib/dev/iwlwifi/fw/api/
H A Dbinding.h22 * @macs: array of MAC id and colors which belong to the binding,
32 __le32 macs[MAX_MACS_IN_BINDING]; member
42 * @macs: array of MAC id and colors which belong to the binding
53 __le32 macs[MAX_MACS_IN_BINDING]; member
/freebsd/crypto/openssh/regress/unittests/kex/
H A Dtest_proposal.c91 char *prop[PROPOSAL_MAX], *kexalgs, *ciphers, *macs, *hkalgs; in kex_proposal_populate_tests() local
99 macs = mac_alg_list(','); in kex_proposal_populate_tests()
111 ciphers, macs, hkalgs, comp); in kex_proposal_populate_tests()
122 free(macs); in kex_proposal_populate_tests()
/freebsd/sys/netgraph/
H A Dng_macfilter.h98 u_int32_t n; /* Number of entries in macs */
99 struct ngm_macfilter_mac macs[]; /* Macs table */ member
103 { "macs", &ng_macfilter_macs_array_type },\
H A Dng_macfilter.c114 (const struct ngm_macfilter_macs *)(buf - OFFSETOF(struct ngm_macfilter_macs, macs)); in macfilter_get_macs_count()
270 struct mtx mtx; /* Mutex for MACs table */
344 * Count the number of matching macs routed to this hook.
731 bcopy(mfp->mf_macs, &ngm_macs->macs[0], n * sizeof(struct ngm_macfilter_mac)); in ng_macfilter_rcvmsg()
834 MACFILTER_DEBUG("%s: removed %d MACs", NG_HOOK_NAME(hook), cnt); in ng_macfilter_disconnect()
/freebsd/share/man/man4/
H A Dng_macfilter.4115 u_int32_t n; /* Number of entries in macs */
116 struct ngm_macfilter_mac macs[]; /* Macs table */
204 …Args: { n=1 macs=[ { ether=08:00:27:92:eb:aa hookid=1 packets_in=3571 bytes_in=592631 packets_out=…
/freebsd/sys/contrib/dev/iwlwifi/mvm/
H A Dbinding.c48 cmd.macs[i] = cpu_to_le32(FW_CTXT_INVALID); in iwl_mvm_binding_cmd()
50 cmd.macs[i] = cpu_to_le32(FW_CMD_ID_AND_COLOR(data->ids[i], in iwl_mvm_binding_cmd()
141 * while many macs are bound, which is forbidden - so fail the binding. in iwl_mvm_binding_add_vif()
/freebsd/crypto/openssl/doc/man7/
H A DEVP_SIGNATURE-HMAC.pod11 The algorithms described here have legacy support for creating MACs using
13 creating MACs. Instead you should use the newer L<EVP_MAC_init(3)> functions.
/freebsd/crypto/openssh/
H A Dmac.c58 static const struct macalg macs[] = { variable
82 /* Returns a list of supported MACs separated by the specified char. */
90 for (m = macs; m->name != NULL; m++) { in mac_alg_list()
129 for (m = macs; m->name != NULL; m++) { in mac_setup()
/freebsd/sys/contrib/openzfs/lib/libspl/include/os/freebsd/sys/
H A Dstat.h77 * Only Intel-based Macs have a separate stat64; Arm-based Macs are like
/freebsd/sys/dev/qlnx/qlnxe/
H A Decore_sriov.h124 /* Shadow copy of all configured MACs; Empty if forcing MACs */
125 u8 macs[ECORE_ETH_VF_NUM_MAC_FILTERS][ETH_ALEN]; member
/freebsd/sys/dev/iwm/
H A Dif_iwm_binding.c173 cmd.macs[i] = htole32(IWM_FW_CTXT_INVALID); in iwm_binding_cmd()
175 cmd.macs[i] = htole32(IWM_FW_CMD_ID_AND_COLOR(data->ids[i], in iwm_binding_cmd()
227 * while many macs are bound, which is forbidden - so fail the binding. in iwm_binding_add_vif()
/freebsd/secure/lib/libcrypto/man/man3/
H A DEVP_MAC.3204 These types and functions help the application to calculate MACs of
208 MACs are a bit complex insofar that some of them use other algorithms
223 as well as a reference to a computation context, for those MACs that
356 \&\fBEVP_MAC_get0_name()\fR return the name of the given \s-1MAC.\s0 For fetched MACs
381 For MACs that use an underlying computation algorithm, the algorithm
/freebsd/crypto/openssl/doc/man3/
H A DEVP_MAC.pod69 These types and functions help the application to calculate MACs of
73 MACs are a bit complex insofar that some of them use other algorithms
89 as well as a reference to a computation context, for those MACs that
229 EVP_MAC_get0_name() return the name of the given MAC. For fetched MACs
257 For MACs that use an underlying computation algorithm, the algorithm
/freebsd/tools/tools/net80211/w00t/ap/
H A Dap.c211 unsigned char macs[6*3]; in read_preq() local
226 mac2str(macs, wh->i_addr2); in read_preq()
227 printf("Probe request for [%s] from %s\n", ptr, macs); in read_preq()
323 unsigned char macs[6*3]; in read_assoc() local
343 mac2str(macs, wh->i_addr2); in read_assoc()
344 printf("Assoc request for [%s] from %s\n", ptr, macs); in read_assoc()
/freebsd/secure/lib/libcrypto/man/man7/
H A DEVP_SIGNATURE-HMAC.7145 The algorithms described here have legacy support for creating MACs using
147 creating MACs. Instead you should use the newer \fBEVP_MAC_init\fR\|(3) functions.
/freebsd/crypto/openssl/providers/implementations/
H A Dbuild.info1 SUBDIRS=digests ciphers rands macs kdfs exchange keymgmt signature asymciphers \
/freebsd/sys/dev/bxe/
H A Decore_sp.c988 /* Set LLH CAM entry: currently only iSCSI and ETH macs are in ecore_set_one_mac_e2()
992 * When multiple unicast ETH MACs PF configuration in switch in ecore_set_one_mac_e2()
993 * independent mode is required (NetQ, multiple netdev MACs, in ecore_set_one_mac_e2()
999 * Currently we won't configure NIG for MACs other than a primary ETH in ecore_set_one_mac_e2()
2433 * single CAM for both MACs and VLAN-MAC pairs. So the offset in ecore_init_vlan_mac_obj()
2434 * will be taken from MACs' pool object only. in ecore_init_vlan_mac_obj()
2496 * single CAM for both MACs and VLAN-MAC pairs. So the offset in ecore_init_vxlan_fltr_obj()
2497 * will be taken from MACs' pool object only. in ecore_init_vxlan_fltr_obj()
2900 /* Push the MACs of the current command into the pending command in ecore_mcast_enqueue_cmd()
2901 * MACs list: FIFO in ecore_mcast_enqueue_cmd()
[all …]

123456789