Lines Matching refs:KeyIVLength

13942 …const t_u8 *Key, const t_u16 KeyLength, const t_u8 *KeyIV, const t_u16 KeyIVLength, t_u8 *Data, t_…  in wlan_set_crypto_RC4_encrypt()  argument
13960 if (KeyIVLength > rc4_keyiv_length) in wlan_set_crypto_RC4_encrypt()
13965 Crypto_RC4_Param.KeyIVLength = KeyIVLength; in wlan_set_crypto_RC4_encrypt()
13966 memcpy(Crypto_RC4_Param.KeyIV, KeyIV, KeyIVLength); in wlan_set_crypto_RC4_encrypt()
13978 …const t_u8 *Key, const t_u16 KeyLength, const t_u8 *KeyIV, const t_u16 KeyIVLength, t_u8 *Data, t_… in wlan_set_crypto_RC4_decrypt() argument
13996 if (KeyIVLength > rc4_keyiv_length) in wlan_set_crypto_RC4_decrypt()
14001 Crypto_RC4_Param.KeyIVLength = KeyIVLength; in wlan_set_crypto_RC4_decrypt()
14002 memcpy(Crypto_RC4_Param.KeyIV, KeyIV, KeyIVLength); in wlan_set_crypto_RC4_decrypt()
14014 …const t_u8 *Key, const t_u16 KeyLength, const t_u8 *KeyIV, const t_u16 KeyIVLength, t_u8 *Data, t_… in wlan_set_crypto_AES_ECB_encrypt() argument
14032 if (KeyIVLength > aes_ecb_keyiv_length) in wlan_set_crypto_AES_ECB_encrypt()
14037 Crypto_AES_ECB_Param.KeyIVLength = KeyIVLength; in wlan_set_crypto_AES_ECB_encrypt()
14038 memcpy(Crypto_AES_ECB_Param.KeyIV, KeyIV, KeyIVLength); in wlan_set_crypto_AES_ECB_encrypt()
14050 …const t_u8 *Key, const t_u16 KeyLength, const t_u8 *KeyIV, const t_u16 KeyIVLength, t_u8 *Data, t_… in wlan_set_crypto_AES_ECB_decrypt() argument
14068 if (KeyIVLength > aes_ecb_keyiv_length) in wlan_set_crypto_AES_ECB_decrypt()
14073 Crypto_AES_ECB_Param.KeyIVLength = KeyIVLength; in wlan_set_crypto_AES_ECB_decrypt()
14074 memcpy(Crypto_AES_ECB_Param.KeyIV, KeyIV, KeyIVLength); in wlan_set_crypto_AES_ECB_decrypt()
14086 …const t_u8 *Key, const t_u16 KeyLength, const t_u8 *KeyIV, const t_u16 KeyIVLength, t_u8 *Data, t_… in wlan_set_crypto_AES_WRAP_encrypt() argument
14104 if (KeyIVLength > aes_wrap_keyiv_length) in wlan_set_crypto_AES_WRAP_encrypt()
14110 Crypto_AES_WRAP_Param.KeyIVLength = KeyIVLength; in wlan_set_crypto_AES_WRAP_encrypt()
14111 memcpy(Crypto_AES_WRAP_Param.KeyIV, KeyIV, KeyIVLength); in wlan_set_crypto_AES_WRAP_encrypt()
14123 …const t_u8 *Key, const t_u16 KeyLength, const t_u8 *KeyIV, const t_u16 KeyIVLength, t_u8 *Data, t_… in wlan_set_crypto_AES_WRAP_decrypt() argument
14141 if (KeyIVLength > aes_wrap_keyiv_length) in wlan_set_crypto_AES_WRAP_decrypt()
14146 Crypto_AES_WRAP_Param.KeyIVLength = KeyIVLength; in wlan_set_crypto_AES_WRAP_decrypt()
14147 memcpy(Crypto_AES_WRAP_Param.KeyIV, KeyIV, KeyIVLength); in wlan_set_crypto_AES_WRAP_decrypt()