Lines Matching defs:iproc_ctx_s
178 struct iproc_ctx_s { struct
179 u8 enckey[MAX_KEY_SIZE + ARC4_STATE_SIZE];
180 unsigned int enckeylen;
182 u8 authkey[MAX_KEY_SIZE + ARC4_STATE_SIZE];
183 unsigned int authkeylen;
185 u8 salt[MAX_SALT_SIZE];
186 unsigned int salt_len;
187 unsigned int salt_offset;
188 u8 iv[MAX_IV_SIZE];
190 unsigned int digestsize;
192 struct iproc_alg_s *alg;
193 bool is_esp;
195 struct cipher_op cipher;
196 enum spu_cipher_type cipher_type;
198 struct auth_op auth;
199 bool auth_first;
208 unsigned int max_payload;
210 struct crypto_aead *fallback_cipher;
214 u8 ipad[MAX_HASH_BLOCK_SIZE];
215 u8 opad[MAX_HASH_BLOCK_SIZE];
223 u8 bcm_spu_req_hdr[ALIGN(SPU2_HEADER_ALLOC_LEN, SPU_MSG_ALIGN)];
226 u16 spu_req_hdr_len;
229 u16 spu_resp_hdr_len;
255 struct iproc_ctx_s *ctx; argument