Lines Matching defs:iproc_ctx_s
189 struct iproc_ctx_s { struct
190 u8 enckey[MAX_KEY_SIZE + ARC4_STATE_SIZE];
191 unsigned int enckeylen;
193 u8 authkey[MAX_KEY_SIZE + ARC4_STATE_SIZE];
194 unsigned int authkeylen;
196 u8 salt[MAX_SALT_SIZE];
197 unsigned int salt_len;
198 unsigned int salt_offset;
199 u8 iv[MAX_IV_SIZE];
201 unsigned int digestsize;
203 struct iproc_alg_s *alg;
204 bool is_esp;
206 struct cipher_op cipher;
207 enum spu_cipher_type cipher_type;
209 struct auth_op auth;
210 bool auth_first;
219 unsigned int max_payload;
221 struct crypto_aead *fallback_cipher;
225 u8 ipad[MAX_HASH_BLOCK_SIZE];
226 u8 opad[MAX_HASH_BLOCK_SIZE];
234 u8 bcm_spu_req_hdr[ALIGN(SPU2_HEADER_ALLOC_LEN, SPU_MSG_ALIGN)];
237 u16 spu_req_hdr_len;
240 u16 spu_resp_hdr_len;
266 struct iproc_ctx_s *ctx; argument