Delta Between Two Patch Sets: src/pkg/crypto/cipher/Makefile
Issue 3069041 :
code review 3069041: crypto/cipher: add package (Closed)
Left Patch Set:
Right Patch Set: code review 3069041: crypto/cipher: add package
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/cipher/Makefile
src/pkg/crypto/cipher/cbc.go
src/pkg/crypto/cipher/cbc_aes_test.go
src/pkg/crypto/cipher/cipher.go
src/pkg/crypto/cipher/common_test.go
src/pkg/crypto/cipher/ctr.go
src/pkg/crypto/cipher/ctr_aes_test.go
src/pkg/crypto/cipher/io.go
LEFT RIGHT
1 # Copyright 2009 The Go Authors. All rights reserved. 1 # Copyright 2010 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 ../../../Make.inc 5 include ../../../Make.inc
6 6
7 TARG=crypto/cipher 7 TARG=crypto/cipher
8 GOFILES=\ 8 GOFILES=\
9 cbc.go\ 9 cbc.go\
10 cipher.go\ 10 cipher.go\
11 ctr.go\ 11 ctr.go\
12 » io.go\ 12 » io.go
13 13
14 include ../../../Make.pkg 14 include ../../../Make.pkg
LEFT RIGHT