Lines Matching refs:short_len
290 int short_len, long_len, pad_len, key_len, size; in zcrypt_type6_crt_key() local
294 short_len = (crt->inputdatalength + 1) / 2; in zcrypt_type6_crt_key()
295 long_len = short_len + 8; in zcrypt_type6_crt_key()
296 pad_len = -(3*long_len + 2*short_len) & 7; in zcrypt_type6_crt_key()
297 key_len = 3*long_len + 2*short_len + pad_len + crt->inputdatalength; in zcrypt_type6_crt_key()
319 key->pvt.q_len = key->pvt.dq_len = short_len; in zcrypt_type6_crt_key()
326 crt->nq_prime, short_len) || in zcrypt_type6_crt_key()
327 copy_from_user(key->key_parts + long_len + short_len, in zcrypt_type6_crt_key()
329 copy_from_user(key->key_parts + 2*long_len + short_len, in zcrypt_type6_crt_key()
330 crt->bq_key, short_len) || in zcrypt_type6_crt_key()
331 copy_from_user(key->key_parts + 2*long_len + 2*short_len, in zcrypt_type6_crt_key()
334 memset(key->key_parts + 3*long_len + 2*short_len + pad_len, in zcrypt_type6_crt_key()