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