Searched defs:evp_cipher_ctx_st (Results 1 – 7 of 7) sorted by relevance
458 struct evp_cipher_ctx_st { struct460 const EVP_CIPHER *cipher;463 void *app_data; // application stuff466 void *cipher_data;470 unsigned key_len;473 int encrypt;476 uint32_t flags;479 uint8_t oiv[EVP_MAX_IV_LENGTH];482 uint8_t iv[EVP_MAX_IV_LENGTH];486 uint8_t buf[EVP_MAX_BLOCK_LENGTH];[all …]
519 struct evp_cipher_ctx_st { struct521 const EVP_CIPHER *cipher;524 void *app_data; // application stuff527 void *cipher_data;531 unsigned key_len;534 int encrypt;537 uint32_t flags;540 uint8_t oiv[EVP_MAX_IV_LENGTH];543 uint8_t iv[EVP_MAX_IV_LENGTH];547 uint8_t buf[EVP_MAX_BLOCK_LENGTH];[all …]
449 struct evp_cipher_ctx_st { struct450 const EVP_CIPHER *cipher;451 ENGINE *engine; /* functional reference if 'cipher' is453 int encrypt; /* encrypt or decrypt */454 int buf_len; /* number we have left */455 unsigned char oiv[EVP_MAX_IV_LENGTH]; /* original iv */456 unsigned char iv[EVP_MAX_IV_LENGTH]; /* working iv */457 unsigned char buf[EVP_MAX_BLOCK_LENGTH]; /* saved partial block */458 int num; /* used by cfb/ofb/ctr mode */459 void *app_data; /* application stuff */[all …]