Lines Matching refs:fraglen
397 int fraglen; member
406 int thislen = desc->fraglen + sg->length; in encryptor()
407 int fraglen, ret; in encryptor() local
427 desc->fraglen += sg->length; in encryptor()
430 fraglen = thislen & (crypto_blkcipher_blocksize(desc->desc.tfm) - 1); in encryptor()
431 thislen -= fraglen; in encryptor()
447 if (fraglen) { in encryptor()
448 sg_set_page(&desc->outfrags[0], sg_page(sg), fraglen, in encryptor()
449 sg->offset + sg->length - fraglen); in encryptor()
453 desc->fraglen = fraglen; in encryptor()
456 desc->fraglen = 0; in encryptor()
478 desc.fraglen = 0; in gss_encrypt_xdr_buf()
492 int fraglen; member
499 int thislen = desc->fraglen + sg->length; in decryptor()
500 int fraglen, ret; in decryptor() local
508 desc->fraglen += sg->length; in decryptor()
510 fraglen = thislen & (crypto_blkcipher_blocksize(desc->desc.tfm) - 1); in decryptor()
511 thislen -= fraglen; in decryptor()
525 if (fraglen) { in decryptor()
526 sg_set_page(&desc->frags[0], sg_page(sg), fraglen, in decryptor()
527 sg->offset + sg->length - fraglen); in decryptor()
529 desc->fraglen = fraglen; in decryptor()
532 desc->fraglen = 0; in decryptor()
551 desc.fraglen = 0; in gss_decrypt_xdr_buf()
724 desc.fraglen = 0; in gss_krb5_aes_encrypt()
803 desc.fraglen = 0; in gss_krb5_aes_decrypt()