Lines Matching refs:ivopts
2849 char **ivmode, char **ivopts) in crypt_ctr_cipher_new() argument
2864 *ivopts = strrchr(tmp, ':'); in crypt_ctr_cipher_new()
2865 if (*ivopts) { in crypt_ctr_cipher_new()
2866 **ivopts = '\0'; in crypt_ctr_cipher_new()
2867 (*ivopts)++; in crypt_ctr_cipher_new()
2891 if (!*ivopts) { in crypt_ctr_cipher_new()
2896 cipher_api, *ivopts); in crypt_ctr_cipher_new()
2922 char **ivmode, char **ivopts) in crypt_ctr_cipher_old() argument
2954 *ivopts = tmp; in crypt_ctr_cipher_old()
2975 if (!*ivopts) { in crypt_ctr_cipher_old()
2981 "essiv(%s(%s),%s)", chainmode, cipher, *ivopts); in crypt_ctr_cipher_old()
3009 char *ivmode = NULL, *ivopts = NULL; in crypt_ctr_cipher() local
3019 ret = crypt_ctr_cipher_new(ti, cipher_in, key, &ivmode, &ivopts); in crypt_ctr_cipher()
3021 ret = crypt_ctr_cipher_old(ti, cipher_in, key, &ivmode, &ivopts); in crypt_ctr_cipher()
3039 ret = cc->iv_gen_ops->ctr(cc, ti, ivopts); in crypt_ctr_cipher()