Skip to content

Commit

Permalink
add note on CLRF
Browse files Browse the repository at this point in the history
  • Loading branch information
Autoparallel committed Aug 28, 2024
1 parent 9c4ee69 commit 98abbfb
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions circuits/parser_http_request/language.circom
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,9 @@ template Syntax() {
// - ASCII char `"`
signal output QUOTE <== 34;
//-White_space--------------------------------------------------------------------------------//
// - ASCII char: `\n`
signal output NEWLINE <== 10;
// - ASCII pair: `\r\n`
signal output CLRF <== [13, 10]; // https://www.rfc-editor.org/rfc/rfc2616#section-2.2
// https://www.rfc-editor.org/rfc/rfc7230#section-3.5
// - ASCII char: ` `
signal output SPACE <== 32;
//-Escape-------------------------------------------------------------------------------------//
Expand Down

0 comments on commit 98abbfb

Please sign in to comment.