mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 18:37:34 +00:00
LibCrypto: Format the comments in ASN1/PEM.h correctly
This commit is contained in:
parent
3f2b78a063
commit
e54a5b7fb8
1 changed files with 2 additions and 2 deletions
|
@ -46,7 +46,7 @@ static ByteBuffer decode_pem(ReadonlyBytes data_in, size_t cert_index = 0)
|
|||
continue;
|
||||
|
||||
if (data_in[i] != '-') {
|
||||
// read entire line
|
||||
// Read entire line.
|
||||
while ((i < input_length) && (data_in[i] != '\n'))
|
||||
i++;
|
||||
continue;
|
||||
|
@ -54,7 +54,7 @@ static ByteBuffer decode_pem(ReadonlyBytes data_in, size_t cert_index = 0)
|
|||
|
||||
if (data_in[i] == '-') {
|
||||
auto end_idx = i;
|
||||
//read until end of line
|
||||
// Read until end of line.
|
||||
while ((i < input_length) && (data_in[i] != '\n'))
|
||||
i++;
|
||||
if (start_at) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue