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