Lines Matching defs:cipher_data_st
518 typedef struct cipher_data_st { struct
519 const EVP_CIPHER *cipher;
520 EVP_CIPHER *fetched_cipher;
521 int enc;
523 int aead;
524 unsigned char *key;
525 size_t key_len;
526 size_t key_bits; /* Used by RC2 */
527 unsigned char *iv;
528 unsigned char *next_iv; /* Expected IV state after operation */
529 unsigned int rounds;
530 size_t iv_len;
531 unsigned char *plaintext;
532 size_t plaintext_len;
533 unsigned char *ciphertext;
534 size_t ciphertext_len;
536 unsigned char *aad[AAD_NUM];
537 size_t aad_len[AAD_NUM];
538 int tls_aad;
539 int tls_version;
540 unsigned char *tag;
541 const char *cts_mode;
542 size_t tag_len;
543 int tag_late;
544 unsigned char *mac_key;
545 size_t mac_key_len;