Lines Matching refs:ivopts
2949 char **ivmode, char **ivopts) in crypt_ctr_cipher_new() argument
2964 *ivopts = strrchr(tmp, ':'); in crypt_ctr_cipher_new()
2965 if (*ivopts) { in crypt_ctr_cipher_new()
2966 **ivopts = '\0'; in crypt_ctr_cipher_new()
2967 (*ivopts)++; in crypt_ctr_cipher_new()
2991 if (!*ivopts) { in crypt_ctr_cipher_new()
2996 cipher_api, *ivopts); in crypt_ctr_cipher_new()
3022 char **ivmode, char **ivopts) in crypt_ctr_cipher_old() argument
3054 *ivopts = tmp; in crypt_ctr_cipher_old()
3075 if (!*ivopts) { in crypt_ctr_cipher_old()
3081 "essiv(%s(%s),%s)", chainmode, cipher, *ivopts); in crypt_ctr_cipher_old()
3109 char *ivmode = NULL, *ivopts = NULL; in crypt_ctr_cipher() local
3119 ret = crypt_ctr_cipher_new(ti, cipher_in, key, &ivmode, &ivopts); in crypt_ctr_cipher()
3121 ret = crypt_ctr_cipher_old(ti, cipher_in, key, &ivmode, &ivopts); in crypt_ctr_cipher()
3139 ret = cc->iv_gen_ops->ctr(cc, ti, ivopts); in crypt_ctr_cipher()