Searched defs:evp_cipher_ctx_st (Results 1 – 1 of 1) sorted by relevance
450 struct evp_cipher_ctx_st { struct451 const EVP_CIPHER *cipher;452 ENGINE *engine; /* functional reference if 'cipher' is454 int encrypt; /* encrypt or decrypt */455 int buf_len; /* number we have left */456 unsigned char oiv[EVP_MAX_IV_LENGTH]; /* original iv */457 unsigned char iv[EVP_MAX_IV_LENGTH]; /* working iv */458 unsigned char buf[EVP_MAX_BLOCK_LENGTH]; /* saved partial block */459 int num; /* used by cfb/ofb/ctr mode */460 void *app_data; /* application stuff */[all …]