Lines Matching refs:ivopts
2692 char **ivmode, char **ivopts) in crypt_ctr_cipher_new() argument
2707 *ivopts = strrchr(tmp, ':'); in crypt_ctr_cipher_new()
2708 if (*ivopts) { in crypt_ctr_cipher_new()
2709 **ivopts = '\0'; in crypt_ctr_cipher_new()
2710 (*ivopts)++; in crypt_ctr_cipher_new()
2734 if (!*ivopts) { in crypt_ctr_cipher_new()
2739 cipher_api, *ivopts); in crypt_ctr_cipher_new()
2765 char **ivmode, char **ivopts) in crypt_ctr_cipher_old() argument
2797 *ivopts = tmp; in crypt_ctr_cipher_old()
2818 if (!*ivopts) { in crypt_ctr_cipher_old()
2824 "essiv(%s(%s),%s)", chainmode, cipher, *ivopts); in crypt_ctr_cipher_old()
2852 char *ivmode = NULL, *ivopts = NULL; in crypt_ctr_cipher() local
2862 ret = crypt_ctr_cipher_new(ti, cipher_in, key, &ivmode, &ivopts); in crypt_ctr_cipher()
2864 ret = crypt_ctr_cipher_old(ti, cipher_in, key, &ivmode, &ivopts); in crypt_ctr_cipher()
2882 ret = cc->iv_gen_ops->ctr(cc, ti, ivopts); in crypt_ctr_cipher()