aboutsummaryrefslogtreecommitdiff
path: root/src/pkg/Makefile
diff options
context:
space:
mode:
authorAdrian O'Grady <elpollouk@gmail.com>2009-12-09 00:06:20 -0800
committerRuss Cox <rsc@golang.org>2009-12-09 00:06:20 -0800
commit6ebfd1eff28fbc84a0857298e4ecee9d4c7570a1 (patch)
treed8576812aeac29feffe485994aa2d5f78d307b11 /src/pkg/Makefile
parent0400a7f8b1e6ce821f38fed9e4bc729620f7f4ce (diff)
downloadgo-6ebfd1eff28fbc84a0857298e4ecee9d4c7570a1.tar.xz
Added XTEA block cipher package to src/pkg/crypto
This is an adaption of the code from http://en.wikipedia.org/wiki/XTEA. The package also implements the block.Cipher interface so that it can be used with the various block modes. R=rsc https://golang.org/cl/157152
Diffstat (limited to 'src/pkg/Makefile')
-rw-r--r--src/pkg/Makefile1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/pkg/Makefile b/src/pkg/Makefile
index 7643bee955..912bc9d604 100644
--- a/src/pkg/Makefile
+++ b/src/pkg/Makefile
@@ -36,6 +36,7 @@ DIRS=\
crypto/subtle\
crypto/tls\
crypto/x509\
+ crypto/xtea\
debug/dwarf\
debug/macho\
debug/elf\