Side by Side Diff: src/pkg/crypto/tls/Makefile
Issue 157076 :
crypto/tls: add initial client implementation. (Closed)
Patch Set: code review 157076: crypto/tls: add initial client implementation.
Use n/p to move between diff chunks;
N/P to move between comments.
Please Sign in to add in-line comments.
Jump to:
src/pkg/crypto/tls/Makefile
src/pkg/crypto/tls/ca_set.go
src/pkg/crypto/tls/common.go
src/pkg/crypto/tls/handshake_client.go
src/pkg/crypto/tls/handshake_messages.go
src/pkg/crypto/tls/handshake_messages_test.go
src/pkg/crypto/tls/handshake_server.go
src/pkg/crypto/tls/record_process.go
src/pkg/crypto/tls/tls.go
OLD NEW
1 # Copyright 2009 The Go Authors. All rights reserved. 1 # Copyright 2009 The Go Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style 2 # Use of this source code is governed by a BSD-style
3 # license that can be found in the LICENSE file. 3 # license that can be found in the LICENSE file.
4 4
5 include $(GOROOT)/src/Make.$(GOARCH) 5 include $(GOROOT)/src/Make.$(GOARCH)
6 6
7 TARG=crypto/tls 7 TARG=crypto/tls
8 GOFILES=\ 8 GOFILES=\
9 alert.go\ 9 alert.go\
10 common.go\ 10 common.go\
11 handshake_client.go\
11 handshake_messages.go\ 12 handshake_messages.go\
12 handshake_server.go\ 13 handshake_server.go\
13 prf.go\ 14 prf.go\
14 record_process.go\ 15 record_process.go\
15 record_read.go\ 16 record_read.go\
16 record_write.go\ 17 record_write.go\
18 ca_set.go\
17 tls.go\ 19 tls.go\
18 20
19 include $(GOROOT)/src/Make.pkg 21 include $(GOROOT)/src/Make.pkg
OLD NEW