Lines Matching refs:fraglen
375 int fraglen; member
386 int thislen = desc->fraglen + sg->length; in encryptor()
387 int fraglen, ret; in encryptor() local
407 desc->fraglen += sg->length; in encryptor()
410 fraglen = thislen & (crypto_sync_skcipher_blocksize(tfm) - 1); in encryptor()
411 thislen -= fraglen; in encryptor()
429 if (fraglen) { in encryptor()
430 sg_set_page(&desc->outfrags[0], sg_page(sg), fraglen, in encryptor()
431 sg->offset + sg->length - fraglen); in encryptor()
435 desc->fraglen = fraglen; in encryptor()
438 desc->fraglen = 0; in encryptor()
462 desc.fraglen = 0; in gss_encrypt_xdr_buf()
477 int fraglen; member
484 int thislen = desc->fraglen + sg->length; in decryptor()
487 int fraglen, ret; in decryptor() local
495 desc->fraglen += sg->length; in decryptor()
497 fraglen = thislen & (crypto_sync_skcipher_blocksize(tfm) - 1); in decryptor()
498 thislen -= fraglen; in decryptor()
514 if (fraglen) { in decryptor()
515 sg_set_page(&desc->frags[0], sg_page(sg), fraglen, in decryptor()
516 sg->offset + sg->length - fraglen); in decryptor()
518 desc->fraglen = fraglen; in decryptor()
521 desc->fraglen = 0; in decryptor()
543 desc.fraglen = 0; in gss_decrypt_xdr_buf()
687 desc.fraglen = 0; in krb5_cbc_cts_encrypt()
749 desc.fraglen = 0; in krb5_cbc_cts_decrypt()