Skip to content

Commit

Permalink
Merge pull request #108 from Traperto/fix/pdf-end
Browse files Browse the repository at this point in the history
fix(server): Add pdf EndWithArray
  • Loading branch information
kryptobi authored Aug 20, 2024
2 parents a0a827e + fdf12d6 commit 11a8c68
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion MagicBytesValidator/Formats/Pdf.cs
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,8 @@ public Pdf() : base(
[0x0A, 0x25, 0x25, 0x25, 0x45, 0x4F, 0x46],
[0x0A, 0x25, 0x25, 0x45, 0x4F, 0x46, 0x0A],
[0x0D, 0x0A, 0x25, 0x25, 0x45, 0x4F, 0x46, 0x0D, 0x0A],
[0x0D, 0x25, 0x25, 0x45, 0x4F, 0x46, 0x0D]
[0x0D, 0x25, 0x25, 0x45, 0x4F, 0x46, 0x0D],
[0x20, 0x0a, 0x25, 0x25, 0x45, 0x4f, 0x46, 0x0d, 0x0a]
]);
}
}

0 comments on commit 11a8c68

Please sign in to comment.