Lines Matching refs:ivopts
2922 char **ivmode, char **ivopts) in crypt_ctr_cipher_new() argument
2937 *ivopts = strrchr(tmp, ':'); in crypt_ctr_cipher_new()
2938 if (*ivopts) { in crypt_ctr_cipher_new()
2939 **ivopts = '\0'; in crypt_ctr_cipher_new()
2940 (*ivopts)++; in crypt_ctr_cipher_new()
2964 if (!*ivopts) { in crypt_ctr_cipher_new()
2969 cipher_api, *ivopts); in crypt_ctr_cipher_new()
2995 char **ivmode, char **ivopts) in crypt_ctr_cipher_old() argument
3027 *ivopts = tmp; in crypt_ctr_cipher_old()
3048 if (!*ivopts) { in crypt_ctr_cipher_old()
3054 "essiv(%s(%s),%s)", chainmode, cipher, *ivopts); in crypt_ctr_cipher_old()
3082 char *ivmode = NULL, *ivopts = NULL; in crypt_ctr_cipher() local
3092 ret = crypt_ctr_cipher_new(ti, cipher_in, key, &ivmode, &ivopts); in crypt_ctr_cipher()
3094 ret = crypt_ctr_cipher_old(ti, cipher_in, key, &ivmode, &ivopts); in crypt_ctr_cipher()
3112 ret = cc->iv_gen_ops->ctr(cc, ti, ivopts); in crypt_ctr_cipher()