X-Git-Url: https://gerrit.fd.io/r/gitweb?a=blobdiff_plain;f=src%2Fplugins%2Fcrypto_native%2Faes_gcm.c;h=d0f57da1e09cfbba7373c44b838ec569ecbcce8d;hb=2e9a06fa6013e4ac9be3325c2755e0631d9c6ae4;hp=41a9d48026917dabc086833ac36da10de43e174d;hpb=e9570d4ee36fab5ea449b33e6ea4e954b3233f4b;p=vpp.git diff --git a/src/plugins/crypto_native/aes_gcm.c b/src/plugins/crypto_native/aes_gcm.c index 41a9d480269..d0f57da1e09 100644 --- a/src/plugins/crypto_native/aes_gcm.c +++ b/src/plugins/crypto_native/aes_gcm.c @@ -579,7 +579,7 @@ aes_gcm (u8x16u * in, u8x16u * out, u8x16u * addt, u8x16u * iv, u8x16u * tag, { /* store tag */ if (tag_len) - aes_store_partial (tag, T, (1 << tag_len) - 1); + aes_store_partial (tag, T, tag_len); else tag[0] = T; }