Skip to content

Commit

Permalink
Remove some stray debugging
Browse files Browse the repository at this point in the history
Looks like this landed by mistake

Change-Id: Ifbe775d172c0c6c9df2e656097c986d6f7bd55a3
Reviewed-on: https://boringssl-review.googlesource.com/c/boringssl/+/70827
Auto-Submit: David Benjamin <davidben@google.com>
Commit-Queue: Bob Beck <bbe@google.com>
Reviewed-by: Bob Beck <bbe@google.com>
  • Loading branch information
davidben authored and Boringssl LUCI CQ committed Sep 3, 2024
1 parent dd23a93 commit 517fd77
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions ssl/test/runner/conn.go
Original file line number Diff line number Diff line change
Expand Up @@ -812,7 +812,6 @@ func newChachaRecordNumberEncrypter(key []byte) *chachaRecordNumberEncrypter {
out := &chachaRecordNumberEncrypter{
key: key,
}
fmt.Printf("new RNE with key %x\n", key)
return out
}

Expand All @@ -831,7 +830,6 @@ func (c *chachaRecordNumberEncrypter) generateMask(sample []byte) []byte {
zeroes := make([]byte, 2)
out := make([]byte, 2)
cipher.XORKeyStream(out, zeroes)
fmt.Printf("golang generateMask: sample: %x, key: %x, mask: %x\n", sample[:16], c.key, out)
return out
}

Expand Down

0 comments on commit 517fd77

Please sign in to comment.