ipsec: fix esp padding 23/28523/1
authorMilan Lenco <milan.lenco@pantheon.tech>
Thu, 20 Aug 2020 11:23:09 +0000 (13:23 +0200)
committerMilan Lenco <milan.lenco@pantheon.tech>
Thu, 20 Aug 2020 12:00:40 +0000 (14:00 +0200)
Type: fix

Signed-off-by: Milan Lenco <milan.lenco@pantheon.tech>
Change-Id: Ic8db52b41d7e5af3425099f008984e50afb3da74

src/vnet/ipsec/esp_encrypt.c

index e80f986..8b722ef 100644 (file)
@@ -118,7 +118,7 @@ esp_add_footer_and_icv (vlib_main_t * vm, vlib_buffer_t ** last,
 {
   static const u8 pad_data[ESP_MAX_BLOCK_SIZE] = {
     0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08,
-    0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x00, 0x00,
+    0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f, 0x00,
   };
 
   u16 min_length = total_len + sizeof (esp_footer_t);