Lines Matching refs:fraglen
377 int fraglen; member
388 int thislen = desc->fraglen + sg->length; in encryptor()
389 int fraglen, ret; in encryptor() local
409 desc->fraglen += sg->length; in encryptor()
412 fraglen = thislen & (crypto_sync_skcipher_blocksize(tfm) - 1); in encryptor()
413 thislen -= fraglen; in encryptor()
431 if (fraglen) { in encryptor()
432 sg_set_page(&desc->outfrags[0], sg_page(sg), fraglen, in encryptor()
433 sg->offset + sg->length - fraglen); in encryptor()
437 desc->fraglen = fraglen; in encryptor()
440 desc->fraglen = 0; in encryptor()
464 desc.fraglen = 0; in gss_encrypt_xdr_buf()
479 int fraglen; member
486 int thislen = desc->fraglen + sg->length; in decryptor()
489 int fraglen, ret; in decryptor() local
497 desc->fraglen += sg->length; in decryptor()
499 fraglen = thislen & (crypto_sync_skcipher_blocksize(tfm) - 1); in decryptor()
500 thislen -= fraglen; in decryptor()
516 if (fraglen) { in decryptor()
517 sg_set_page(&desc->frags[0], sg_page(sg), fraglen, in decryptor()
518 sg->offset + sg->length - fraglen); in decryptor()
520 desc->fraglen = fraglen; in decryptor()
523 desc->fraglen = 0; in decryptor()
545 desc.fraglen = 0; in gss_decrypt_xdr_buf()
699 desc.fraglen = 0; in krb5_cbc_cts_encrypt()
761 desc.fraglen = 0; in krb5_cbc_cts_decrypt()