Skip to content

Commit

Permalink
Fix replacement mistake
Browse files Browse the repository at this point in the history
  • Loading branch information
jet2jet committed Apr 19, 2024
1 parent 3fe1281 commit 9de6142
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/sign/certUtil.ts
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ export function calculateDERLength(
);
}
actualLength <<= 8;
actualLength |= value;
actualLength |= data[offset]!;
++offset;
}
}
Expand Down

0 comments on commit 9de6142

Please sign in to comment.