summaryrefslogtreecommitdiff
path: root/src/pkg/crypto/tls
AgeCommit message (Collapse)AuthorFilesLines
2011-06-30Imported Upstream version 58upstream/58Ondřej Surý6-12/+15
2011-04-28Imported Upstream version 2011.04.27upstream/2011.04.27Ondřej Surý10-148/+59
2011-04-26Imported Upstream version 2011.04.13upstream/2011.04.13Ondřej Surý7-30/+70
2011-04-20Imported Upstream version 2011.03.07.1upstream/2011.03.07.1Ondřej Surý3-3/+3
2011-02-18Imported Upstream version 2011.02.15upstream/2011.02.15Ondřej Surý2-6/+15
2011-02-14Imported Upstream version 2011-02-01.1upstream/2011-02-01.1Ondřej Surý3-4/+7
2011-01-17Imported Upstream version 2011.01.12upstream/2011.01.12Ondřej Surý18-338/+2276
2010-05-27changes &x -> x[0:] for array to slice conversionRuss Cox1-2/+2
R=gri CC=golang-dev http://codereview.appspot.com/1326042
2010-04-26crypto/tls: simpler implementation of record layerRuss Cox15-1312/+1065
Depends on CL 957045, 980043, 1004043. Fixes issue 715. R=agl1, agl CC=golang-dev http://codereview.appspot.com/943043
2010-04-05crypto/tls: good defaultsRuss Cox2-1/+61
R=agl1 CC=golang-dev http://codereview.appspot.com/851041
2010-03-30simplify various code using new map index ruleRuss Cox1-10/+2
R=r CC=golang-dev http://codereview.appspot.com/833044
2010-03-02gofmt: experiment: align values in map composites where possibleRobert Griesemer1-4/+4
- gofmt -w src misc - looking for feedback R=rsc, r CC=golang-dev http://codereview.appspot.com/223076
2010-02-25strings: delete Runes, BytesRuss Cox2-10/+7
gofmt -w -r 'strings.Bytes(a) -> []byte(a)' src/cmd src/pkg test/bench gofmt -w -r 'strings.Runes(a) -> []int(a)' src/cmd src/pkg test/bench delete unused imports R=r CC=golang-dev http://codereview.appspot.com/224062
2010-02-05crypto/tls: typo fixAdam Langley1-1/+1
R=rsc CC=golang-dev http://codereview.appspot.com/201047
2009-12-28crypto/tls: make Listener a pointer.Adam Langley1-4/+5
Listener contains private members and 6g now enforces that private members cannot be assigned outside of their package. R=rsc CC=golang-dev http://codereview.appspot.com/183073
2009-12-23crypto/tls: extensions and Next Protocol NegotiationAdam Langley9-28/+379
Add support for TLS extensions in general and Next Protocol Negotiation in particular. R=rsc CC=golang-dev http://codereview.appspot.com/181045
2009-12-15 1) Change default gofmt default settings forRobert Griesemer16-1018/+1018
parsing and printing to new syntax. Use -oldparser to parse the old syntax, use -oldprinter to print the old syntax. 2) Change default gofmt formatting settings to use tabs for indentation only and to use spaces for alignment. This will make the code alignment insensitive to an editor's tabwidth. Use -spaces=false to use tabs for alignment. 3) Manually changed src/exp/parser/parser_test.go so that it doesn't try to parse the parser's source files using the old syntax (they have new syntax now). 4) gofmt -w src misc test/bench 1st set of files. R=rsc CC=agl, golang-dev, iant, ken2, r http://codereview.appspot.com/180047
2009-11-30a[b:len(a)] -> a[b:]Christopher Wedgwood2-7/+7
R=r, rsc CC=agl1 http://codereview.appspot.com/161070 Committer: Russ Cox <rsc@golang.org>
2009-11-23go: makes it build for the case $GOROOT has whitespacesSergio Luis O. B. Correia1-2/+2
the bash scripts and makefiles for building go didn't take into account the fact $GOROOT / $GOBIN could both be directories containing whitespaces, and was not possible to build it in such a situation. this commit adjusts the various makefiles/scripts to make it aware of that possibility, and now it builds successfully when using a path with whitespaces as well. Fixes issue 115. R=rsc, dsymonds1 http://codereview.appspot.com/157067 Committer: Russ Cox <rsc@golang.org>
2009-11-21crypto/tls: add initial client implementation.Adam Langley9-7/+439
R=rsc, agl CC=golang-dev http://codereview.appspot.com/157076
2009-11-20gofmt -r 'α[β:len(α)] -> α[β:]' -w src/cmd src/pkgRuss Cox6-28/+28
R=r, gri CC=golang-dev http://codereview.appspot.com/156115
2009-11-18remove bytes.CopyRob Pike4-27/+20
replace all calls with calls to copy use copy in regexp and bytes.Buffer R=rsc CC=golang-dev http://codereview.appspot.com/157073
2009-11-09 - replaced gofmt expression formatting algorithm withRobert Griesemer6-54/+54
rsc's algorithm - applied gofmt -w misc src - partial CL (remaining files in other CLs) R=rsc, r http://go/go-review/1026036
2009-11-09remove semis after statements in one-statement statement listsRobert Griesemer12-80/+80
R=rsc, r http://go/go-review/1025029
2009-11-06- fine-tuning of one-line func heuristic (nodes.go)Robert Griesemer2-19/+7
- enabled for function declarations (not just function literals) - applied gofmt -w $GOROOT/src (look for instance at src/pkg/debug/elf/elf.go) R=r, rsc CC=go-dev http://go/go-review/1026006
2009-11-05crypto/tls (part 6/5)Adam Langley2-4/+10
Results of running gofmt again. R=rsc CC=go-dev http://go/go-review/1022006 Committer: Adam Langley <agl@golang.org>
2009-11-05crypto/tls (part 4/5)Adam Langley2-0/+191
R=rsc CC=go-dev http://go/go-review/1019002
2009-11-05crypto/tls (part 3)Adam Langley4-0/+871
(With hindsight, record_process might have been designed wrong, but it works for now. It'll get redrawn when client support is added.) R=rsc CC=r http://go/go-review/1018032 Committer: Adam Langley <agl@golang.org>
2009-11-04gofmt-ify cryptoRobert Griesemer2-4/+12
R=agl CC=rsc http://go/go-review/1017032
2009-11-03crypto/tls (part 2)Adam Langley5-0/+610
R=rsc CC=go-dev http://go/go-review/1018028
2009-11-02crypto/tls (part 1)Adam Langley4-0/+418
Rather than drop everything into a single, huge review, I've included some simple bits of code here. R=rsc CC=go-dev http://go/go-review/1016029