Lines Matching defs:iproc_ctx_s
179 struct iproc_ctx_s { struct
180 u8 enckey[MAX_KEY_SIZE + ARC4_STATE_SIZE];
181 unsigned int enckeylen;
183 u8 authkey[MAX_KEY_SIZE + ARC4_STATE_SIZE];
184 unsigned int authkeylen;
186 u8 salt[MAX_SALT_SIZE];
187 unsigned int salt_len;
188 unsigned int salt_offset;
189 u8 iv[MAX_IV_SIZE];
191 unsigned int digestsize;
193 struct iproc_alg_s *alg;
194 bool is_esp;
196 struct cipher_op cipher;
197 enum spu_cipher_type cipher_type;
199 struct auth_op auth;
200 bool auth_first;
209 unsigned int max_payload;
211 struct crypto_aead *fallback_cipher;
215 u8 ipad[MAX_HASH_BLOCK_SIZE];
216 u8 opad[MAX_HASH_BLOCK_SIZE];
224 u8 bcm_spu_req_hdr[ALIGN(SPU2_HEADER_ALLOC_LEN, SPU_MSG_ALIGN)];
227 u16 spu_req_hdr_len;
230 u16 spu_resp_hdr_len;
256 struct iproc_ctx_s *ctx; argument