Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Partial revert of #7434 The purpose of this loop is to chunk the CRL into thousand-byte pieces. To that end, it iterated across the bytes of the CRL in steps of size 1000. When this loop was replaced with a range loop, that step size was not preserved. Our tests do not usually produce any CRLs that exceed 1k bytes, so the test CRLs fit within a single chunk, and this bug was not detected. A search of the diff in the previous change does not show any other instances where a step size other than 1 was being used.
- Loading branch information