Lines Matching refs:KeyLength

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
13958 if (KeyLength > rc4_key_length) in wlan_set_crypto_RC4_encrypt()
13967 Crypto_RC4_Param.KeyLength = KeyLength; in wlan_set_crypto_RC4_encrypt()
13968 memcpy(Crypto_RC4_Param.Key, Key, KeyLength); 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
13994 if (KeyLength > rc4_key_length) in wlan_set_crypto_RC4_decrypt()
14003 Crypto_RC4_Param.KeyLength = KeyLength; in wlan_set_crypto_RC4_decrypt()
14004 memcpy(Crypto_RC4_Param.Key, Key, KeyLength); 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
14030 if (KeyLength > aes_ecb_key_length) in wlan_set_crypto_AES_ECB_encrypt()
14039 Crypto_AES_ECB_Param.KeyLength = KeyLength; in wlan_set_crypto_AES_ECB_encrypt()
14040 memcpy(Crypto_AES_ECB_Param.Key, Key, KeyLength); 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
14066 if (KeyLength > aes_ecb_key_length) in wlan_set_crypto_AES_ECB_decrypt()
14075 Crypto_AES_ECB_Param.KeyLength = KeyLength; in wlan_set_crypto_AES_ECB_decrypt()
14076 memcpy(Crypto_AES_ECB_Param.Key, Key, KeyLength); 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
14102 if (KeyLength > aes_wrap_key_length) in wlan_set_crypto_AES_WRAP_encrypt()
14112 Crypto_AES_WRAP_Param.KeyLength = KeyLength; in wlan_set_crypto_AES_WRAP_encrypt()
14113 memcpy(Crypto_AES_WRAP_Param.Key, Key, KeyLength); 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
14139 if (KeyLength > aes_wrap_key_length) in wlan_set_crypto_AES_WRAP_decrypt()
14148 Crypto_AES_WRAP_Param.KeyLength = KeyLength; in wlan_set_crypto_AES_WRAP_decrypt()
14149 memcpy(Crypto_AES_WRAP_Param.Key, Key, KeyLength); in wlan_set_crypto_AES_WRAP_decrypt()
14159 const t_u16 KeyLength, in wlan_set_crypto_AES_CCMP_encrypt() argument
14176 if (KeyLength == aes_ccmp_key_length) in wlan_set_crypto_AES_CCMP_encrypt()
14188 if (KeyLength > aes_ccmp_key_length) in wlan_set_crypto_AES_CCMP_encrypt()
14201 Crypto_AES_CCMP_Param.KeyLength = KeyLength; in wlan_set_crypto_AES_CCMP_encrypt()
14202 memcpy(Crypto_AES_CCMP_Param.Key, Key, KeyLength); in wlan_set_crypto_AES_CCMP_encrypt()
14212 const t_u16 KeyLength, in wlan_set_crypto_AES_CCMP_decrypt() argument
14230 if (KeyLength == aes_ccmp_key_length) in wlan_set_crypto_AES_CCMP_decrypt()
14242 if (KeyLength > aes_ccmp_key_length) in wlan_set_crypto_AES_CCMP_decrypt()
14255 Crypto_AES_CCMP_Param.KeyLength = KeyLength; in wlan_set_crypto_AES_CCMP_decrypt()
14256 memcpy(Crypto_AES_CCMP_Param.Key, Key, KeyLength); in wlan_set_crypto_AES_CCMP_decrypt()
14266 const t_u16 KeyLength, in wlan_set_crypto_AES_GCMP_encrypt() argument
14288 if (KeyLength > aes_gcmp_key_length) in wlan_set_crypto_AES_GCMP_encrypt()
14301 Crypto_AES_GCMP_Param.KeyLength = KeyLength; in wlan_set_crypto_AES_GCMP_encrypt()
14302 memcpy(Crypto_AES_GCMP_Param.Key, Key, KeyLength); in wlan_set_crypto_AES_GCMP_encrypt()
14313 const t_u16 KeyLength, in wlan_set_crypto_AES_GCMP_decrypt() argument
14335 if (KeyLength > aes_gcmp_key_length) in wlan_set_crypto_AES_GCMP_decrypt()
14348 Crypto_AES_GCMP_Param.KeyLength = KeyLength; in wlan_set_crypto_AES_GCMP_decrypt()
14349 memcpy(Crypto_AES_GCMP_Param.Key, Key, KeyLength); in wlan_set_crypto_AES_GCMP_decrypt()