Symbol: ipsec_crypto_t
usr/src/uts/common/inet/ip/ipsecah.c
124
static mblk_t *ah_auth_out_done(mblk_t *, ip_xmit_attr_t *, ipsec_crypto_t *);
usr/src/uts/common/inet/ip/ipsecah.c
125
static mblk_t *ah_auth_in_done(mblk_t *, ip_recv_attr_t *, ipsec_crypto_t *);
usr/src/uts/common/inet/ip/ipsecah.c
2477
ah_log_bad_auth(mblk_t *mp, ip_recv_attr_t *ira, ipsec_crypto_t *ic)
usr/src/uts/common/inet/ip/ipsecah.c
2531
ipsec_crypto_t *ic;
usr/src/uts/common/inet/ip/ipsecah.c
2605
ipsec_crypto_t *ic;
usr/src/uts/common/inet/ip/ipsecah.c
2719
ipsec_crypto_t *ic, icstack;
usr/src/uts/common/inet/ip/ipsecah.c
2817
ipsec_crypto_t *ic, icstack;
usr/src/uts/common/inet/ip/ipsecah.c
3472
ah_auth_in_done(mblk_t *phdr_mp, ip_recv_attr_t *ira, ipsec_crypto_t *ic)
usr/src/uts/common/inet/ip/ipsecah.c
3712
ah_auth_out_done(mblk_t *phdr_mp, ip_xmit_attr_t *ixa, ipsec_crypto_t *ic)
usr/src/uts/common/inet/ip/ipsecesp.c
1398
esp_in_done(mblk_t *data_mp, ip_recv_attr_t *ira, ipsec_crypto_t *ic)
usr/src/uts/common/inet/ip/ipsecesp.c
1621
ipsec_crypto_t *ic;
usr/src/uts/common/inet/ip/ipsecesp.c
1708
ipsec_crypto_t *ic;
usr/src/uts/common/inet/ip/ipsecesp.c
1840
ipsec_crypto_t *ic, icstack;
usr/src/uts/common/inet/ip/ipsecesp.c
2167
ipsec_crypto_t *ic, icstack;
usr/src/uts/common/inet/ip/spd.c
2919
ipsec_add_crypto_data(mblk_t *data_mp, ipsec_crypto_t **icp)
usr/src/uts/common/inet/ip/spd.c
2923
mp = allocb(sizeof (ipsec_crypto_t), BPRI_MED);
usr/src/uts/common/inet/ip/spd.c
2928
bzero(mp->b_rptr, sizeof (ipsec_crypto_t));
usr/src/uts/common/inet/ip/spd.c
2929
mp->b_wptr += sizeof (ipsec_crypto_t);
usr/src/uts/common/inet/ip/spd.c
2932
*icp = (ipsec_crypto_t *)mp->b_rptr;
usr/src/uts/common/inet/ip/spd.c
2943
ipsec_remove_crypto_data(mblk_t *crypto_mp, ipsec_crypto_t **icp)
usr/src/uts/common/inet/ip/spd.c
2946
ASSERT(MBLKL(crypto_mp) == sizeof (ipsec_crypto_t));
usr/src/uts/common/inet/ip/spd.c
2948
*icp = (ipsec_crypto_t *)crypto_mp->b_rptr;
usr/src/uts/common/inet/ip/spd.c
2961
ASSERT(MBLKL(crypto_mp) == sizeof (ipsec_crypto_t));
usr/src/uts/common/inet/ipsec_impl.h
850
extern mblk_t *ipsec_add_crypto_data(mblk_t *, ipsec_crypto_t **);
usr/src/uts/common/inet/ipsec_impl.h
851
extern mblk_t *ipsec_remove_crypto_data(mblk_t *, ipsec_crypto_t **);