mirror of
https://github.com/AntelopeIO/boringssl.git
synced 2026-07-21 14:43:53 +00:00
286ea215ec
While I'm here, update x/crypto and x/net to their latest versions. byteReader is a straightforward port, except there doesn't seem to be a convenient way to read length-prefixed bytes without manually casting from cryptobyte.String to []byte, so I've done that. byteBuilder is a bit more involved because it's based on closures, but still a mechanical change. As part of this, I switched runner's ticket format to use u24 length prefixes instead of u32, because cryptobyte.String doesn't have u32 length prefixes. (Although, oddly, cryptobyte.Builder does.) Fixed: 374 Change-Id: If9bea0b41fe2b8bc48f040a667753b160da469bb Reviewed-on: https://boringssl-review.googlesource.com/c/boringssl/+/61186 Auto-Submit: David Benjamin <davidben@google.com> Reviewed-by: Adam Langley <agl@google.com> Commit-Queue: Adam Langley <agl@google.com>
14 lines
209 B
Modula-2
14 lines
209 B
Modula-2
module boringssl.googlesource.com/boringssl
|
|
|
|
go 1.19
|
|
|
|
require (
|
|
golang.org/x/crypto v0.10.0
|
|
golang.org/x/net v0.11.0
|
|
)
|
|
|
|
require (
|
|
golang.org/x/sys v0.9.0 // indirect
|
|
golang.org/x/term v0.9.0 // indirect
|
|
)
|