Lines Matching defs:cipher_data_t
177 struct cipher_data_t { struct
178 char *key;
179 char *block;
180 char *ivec;
181 char *saveblock;
182 crypto_mech_type_t mech_type;
183 crypto_key_t *ckey; /* initial encryption key */
184 crypto_key_t d_encr_key; /* derived encr key */
185 crypto_key_t d_hmac_key; /* derived hmac key */
186 crypto_ctx_template_t enc_tmpl;
187 crypto_ctx_template_t hmac_tmpl;
188 crypto_context_t ctx;
189 size_t bytes;
190 crkeylen_t blocklen;
214 struct cipher_data_t enc_data; argument