Lines Matching defs:cipher_in
2921 static int crypt_ctr_cipher_new(struct dm_target *ti, char *cipher_in, char *key,
2934 tmp = &cipher_in[strlen("capi:")];
2994 static int crypt_ctr_cipher_old(struct dm_target *ti, char *cipher_in, char *key,
3003 if (strchr(cipher_in, '(') || crypt_integrity_aead(cc)) {
3012 tmp = cipher_in;
3079 static int crypt_ctr_cipher(struct dm_target *ti, char *cipher_in, char *key)
3085 cc->cipher_string = kstrdup(cipher_in, GFP_KERNEL);
3091 if (strstarts(cipher_in, "capi:"))
3092 ret = crypt_ctr_cipher_new(ti, cipher_in, key, &ivmode, &ivopts);
3094 ret = crypt_ctr_cipher_old(ti, cipher_in, key, &ivmode, &ivopts);