[dpdk-dev] [Bug 98] wrongly assignment of digest_len

bugzilla at dpdk.org bugzilla at dpdk.org
Wed Oct 24 13:23:17 CEST 2018


https://bugs.dpdk.org/show_bug.cgi?id=98

            Bug ID: 98
           Summary: wrongly assignment of digest_len
           Product: DPDK
           Version: 18.08
          Hardware: All
                OS: All
            Status: CONFIRMED
          Severity: normal
          Priority: Normal
         Component: cryptodev
          Assignee: dev at dpdk.org
          Reporter: kingwel.xie at ericsson.com
  Target Milestone: ---

rte_aesni_mb_pmd.c:406

sess->auth.digest_len = xform->auth.digest_length;

should be:

sess->auth.digest_len = xform->next->auth.digest_length;

To assign session's auth digiest length by auth xform, instead of cipher form.

This causes a wrong truncated mac size of AES-CMAC.

-- 
You are receiving this mail because:
You are the assignee for the bug.


More information about the dev mailing list