Actions
Optimization #8466
open
JL
detect/base64: determine behavior if buf size > buf length
Optimization #8466:
detect/base64: determine behavior if buf size > buf length
Effort:
low
Difficulty:
low
Label:
Description
Determine, document, and test behavior when buffer size > buffer length.
from_base64: bytes 25
with buffer @VGhpcyBpcyBTdXJpY2F0YQ==@erdnaxe
Currently, the transform returns silently and leaves the buffer unchanged.
Options are
- Convert up to nbytes treating nbytes as an upper bound
- Keep current behavior and leave buffer unmodified
- Set the error flag, treating the condition as an error and use absent to detect
Actions