Skip to content

Commit

Permalink
CA: Fix CRL chunking loop (#7451)
Browse files Browse the repository at this point in the history
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
aarongable committed Apr 24, 2024
1 parent fc7c522 commit 7ee5b46
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ca/crl.go
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ func (ci *crlImpl) GenerateCRL(stream capb.CRLGenerator_GenerateCRLServer) error
logID, len(crlBytes), hash,
)

for i := range len(crlBytes) {
for i := 0; i < len(crlBytes); i += 1000 {
j := i + 1000
if j > len(crlBytes) {
j = len(crlBytes)
Expand Down

0 comments on commit 7ee5b46

Please sign in to comment.