Searched refs:auth_len (Results 1 - 12 of 12) sorted by relevance

/freebsd-10.0-release/lib/libc/rpc/
H A Dsvc_auth_unix.c73 u_int auth_len; local
84 auth_len = (u_int)msg->rm_call.cb_cred.oa_length;
85 xdrmem_create(&xdrs, msg->rm_call.cb_cred.oa_base, auth_len,XDR_DECODE);
86 buf = XDR_INLINE(&xdrs, auth_len);
113 if ((5 + gid_len) * BYTES_PER_XDR_UNIT + str_len > auth_len) {
114 (void) printf("bad auth_len gid %ld str %ld auth %u\n",
115 (long)gid_len, (long)str_len, auth_len);
/freebsd-10.0-release/sys/rpc/
H A Dsvc_auth_unix.c72 u_int auth_len; local
77 auth_len = (u_int)msg->rm_call.cb_cred.oa_length;
78 xdrmem_create(&xdrs, msg->rm_call.cb_cred.oa_base, auth_len,
80 buf = XDR_INLINE(&xdrs, auth_len);
112 if ((5 + gid_len) * BYTES_PER_XDR_UNIT + str_len > auth_len) {
113 (void) printf("bad auth_len gid %ld str %ld auth %u\n",
114 (long)gid_len, (long)str_len, auth_len);
/freebsd-10.0-release/sys/mips/cavium/cryptocteon/
H A Dcavium_crypto.c327 int auth_off, int auth_len,
339 "auth_off=%d auth_len=%d crypt_off=%d crypt_len=%d "
341 auth_off, auth_len, crypt_off, crypt_len, icv_off, ivp);
386 int auth_off, int auth_len,
398 "auth_off=%d auth_len=%d crypt_off=%d crypt_len=%d "
400 auth_off, auth_len, crypt_off, crypt_len, icv_off, ivp);
446 int auth_off, int auth_len,
458 "auth_off=%d auth_len=%d crypt_off=%d crypt_len=%d "
460 auth_off, auth_len, crypt_off, crypt_len, icv_off, ivp);
515 int auth_off, int auth_len,
324 octo_des_cbc_encrypt( struct octo_sess *od, struct iovec *iov, size_t iovcnt, size_t iovlen, int auth_off, int auth_len, int crypt_off, int crypt_len, int icv_off, uint8_t *ivp) argument
383 octo_des_cbc_decrypt( struct octo_sess *od, struct iovec *iov, size_t iovcnt, size_t iovlen, int auth_off, int auth_len, int crypt_off, int crypt_len, int icv_off, uint8_t *ivp) argument
443 octo_aes_cbc_encrypt( struct octo_sess *od, struct iovec *iov, size_t iovcnt, size_t iovlen, int auth_off, int auth_len, int crypt_off, int crypt_len, int icv_off, uint8_t *ivp) argument
512 octo_aes_cbc_decrypt( struct octo_sess *od, struct iovec *iov, size_t iovcnt, size_t iovlen, int auth_off, int auth_len, int crypt_off, int crypt_len, int icv_off, uint8_t *ivp) argument
583 octo_null_md5_encrypt( struct octo_sess *od, struct iovec *iov, size_t iovcnt, size_t iovlen, int auth_off, int auth_len, int crypt_off, int crypt_len, int icv_off, uint8_t *ivp) argument
685 octo_null_sha1_encrypt( struct octo_sess *od, struct iovec *iov, size_t iovcnt, size_t iovlen, int auth_off, int auth_len, int crypt_off, int crypt_len, int icv_off, uint8_t *ivp) argument
790 octo_des_cbc_md5_encrypt( struct octo_sess *od, struct iovec *iov, size_t iovcnt, size_t iovlen, int auth_off, int auth_len, int crypt_off, int crypt_len, int icv_off, uint8_t *ivp) argument
938 octo_des_cbc_md5_decrypt( struct octo_sess *od, struct iovec *iov, size_t iovcnt, size_t iovlen, int auth_off, int auth_len, int crypt_off, int crypt_len, int icv_off, uint8_t *ivp) argument
1089 octo_des_cbc_sha1_encrypt( struct octo_sess *od, struct iovec *iov, size_t iovcnt, size_t iovlen, int auth_off, int auth_len, int crypt_off, int crypt_len, int icv_off, uint8_t *ivp) argument
1240 octo_des_cbc_sha1_decrypt( struct octo_sess *od, struct iovec *iov, size_t iovcnt, size_t iovlen, int auth_off, int auth_len, int crypt_off, int crypt_len, int icv_off, uint8_t *ivp) argument
1393 octo_aes_cbc_md5_encrypt( struct octo_sess *od, struct iovec *iov, size_t iovcnt, size_t iovlen, int auth_off, int auth_len, int crypt_off, int crypt_len, int icv_off, uint8_t *ivp) argument
1570 octo_aes_cbc_md5_decrypt( struct octo_sess *od, struct iovec *iov, size_t iovcnt, size_t iovlen, int auth_off, int auth_len, int crypt_off, int crypt_len, int icv_off, uint8_t *ivp) argument
1746 octo_aes_cbc_sha1_encrypt( struct octo_sess *od, struct iovec *iov, size_t iovcnt, size_t iovlen, int auth_off, int auth_len, int crypt_off, int crypt_len, int icv_off, uint8_t *ivp) argument
1942 octo_aes_cbc_sha1_decrypt( struct octo_sess *od, struct iovec *iov, size_t iovcnt, size_t iovlen, int auth_off, int auth_len, int crypt_off, int crypt_len, int icv_off, uint8_t *ivp) argument
[all...]
H A Dcryptocteonvar.h37 typedef int octo_encrypt_t(struct octo_sess *od, struct iovec *iov, size_t iovcnt, size_t iovlen, int auth_off, int auth_len, int crypt_off, int crypt_len, int icv_off, uint8_t *ivp);
38 typedef int octo_decrypt_t(struct octo_sess *od, struct iovec *iov, size_t iovcnt, size_t iovlen, int auth_off, int auth_len, int crypt_off, int crypt_len, int icv_off, uint8_t *ivp);
H A Dcryptocteon.c350 int auth_off = 0, auth_len = 0, crypt_off = 0, crypt_len = 0, icv_off = 0; local
429 auth_len = maccrd->crd_len;
437 auth_len = maccrd->crd_len;
496 auth_off, auth_len, crypt_off, crypt_len, icv_off, ivp); local
499 auth_off, auth_len, crypt_off, crypt_len, icv_off, ivp); local
/freebsd-10.0-release/contrib/tcpdump/
H A Dprint-bfd.c100 u_int8_t auth_len; member in struct:bfd_auth_header_t
260 bfd_auth_header->auth_len);
/freebsd-10.0-release/contrib/wpa/src/eap_peer/
H A Dikev2.c556 u8 method, const u8 *auth, size_t auth_len)
571 size_t auth_len)
601 if (auth_len != prf->hash_len ||
602 os_memcmp(auth, auth_data, auth_len) != 0) {
605 auth, auth_len);
621 const u8 *auth, size_t auth_len)
630 if (auth_len < 4) {
638 auth_len -= 4;
641 wpa_hexdump(MSG_MSGDUMP, "IKEV2: Authentication Data", auth, auth_len);
646 auth_len);
555 ikev2_process_auth_cert(struct ikev2_responder_data *data, u8 method, const u8 *auth, size_t auth_len) argument
569 ikev2_process_auth_secret(struct ikev2_responder_data *data, u8 method, const u8 *auth, size_t auth_len) argument
620 ikev2_process_auth(struct ikev2_responder_data *data, const u8 *auth, size_t auth_len) argument
[all...]
/freebsd-10.0-release/contrib/wpa/src/eap_server/
H A Dikev2.c590 u8 method, const u8 *auth, size_t auth_len)
605 size_t auth_len)
635 if (auth_len != prf->hash_len ||
636 os_memcmp(auth, auth_data, auth_len) != 0) {
639 auth, auth_len);
653 const u8 *auth, size_t auth_len)
662 if (auth_len < 4) {
670 auth_len -= 4;
673 wpa_hexdump(MSG_MSGDUMP, "IKEV2: Authentication Data", auth, auth_len);
678 auth_len);
589 ikev2_process_auth_cert(struct ikev2_initiator_data *data, u8 method, const u8 *auth, size_t auth_len) argument
603 ikev2_process_auth_secret(struct ikev2_initiator_data *data, u8 method, const u8 *auth, size_t auth_len) argument
652 ikev2_process_auth(struct ikev2_initiator_data *data, const u8 *auth, size_t auth_len) argument
[all...]
/freebsd-10.0-release/crypto/openssh/
H A Dcipher.c65 u_int auth_len; member in struct:Cipher
140 return (c->auth_len);
/freebsd-10.0-release/contrib/wpa/src/eap_common/
H A Dikev2_common.h311 size_t auth_len; member in struct:ikev2_payloads
H A Dikev2_common.c375 payloads->auth_len = pdatalen;
/freebsd-10.0-release/sys/netinet/
H A Dsctp_input.c1435 int auth_skipped, uint32_t auth_offset, uint32_t auth_len,
1452 int auth_skipped, uint32_t auth_offset, uint32_t auth_len,
1889 auth_skipped, auth_offset, auth_len,
2036 int auth_skipped, uint32_t auth_offset, uint32_t auth_len,
2235 sctp_m_getptr(m, auth_offset, auth_len, auth_chunk_buf);
2409 int auth_skipped, uint32_t auth_offset, uint32_t auth_len,
2687 auth_skipped, auth_offset, auth_len,
2696 &notification, auth_skipped, auth_offset, auth_len,
4440 uint32_t auth_offset = 0, auth_len = 0; local
4492 auth_len
1447 sctp_process_cookie_existing(struct mbuf *m, int iphlen, int offset, struct sockaddr *src, struct sockaddr *dst, struct sctphdr *sh, struct sctp_state_cookie *cookie, int cookie_len, struct sctp_inpcb *inp, struct sctp_tcb *stcb, struct sctp_nets **netp, struct sockaddr *init_src, int *notification, int auth_skipped, uint32_t auth_offset, uint32_t auth_len, uint8_t use_mflowid, uint32_t mflowid, uint32_t vrf_id, uint16_t port) argument
2031 sctp_process_cookie_new(struct mbuf *m, int iphlen, int offset, struct sockaddr *src, struct sockaddr *dst, struct sctphdr *sh, struct sctp_state_cookie *cookie, int cookie_len, struct sctp_inpcb *inp, struct sctp_nets **netp, struct sockaddr *init_src, int *notification, int auth_skipped, uint32_t auth_offset, uint32_t auth_len, uint8_t use_mflowid, uint32_t mflowid, uint32_t vrf_id, uint16_t port) argument
2405 sctp_handle_cookie_echo(struct mbuf *m, int iphlen, int offset, struct sockaddr *src, struct sockaddr *dst, struct sctphdr *sh, struct sctp_cookie_echo_chunk *cp, struct sctp_inpcb **inp_p, struct sctp_tcb **stcb, struct sctp_nets **netp, int auth_skipped, uint32_t auth_offset, uint32_t auth_len, struct sctp_tcb **locked_tcb, uint8_t use_mflowid, uint32_t mflowid, uint32_t vrf_id, uint16_t port) argument
[all...]

Completed in 111 milliseconds