]> Cypherpunks repositories - gostls13.git/commit
crypto/cipher: add package
authorAdam Langley <agl@golang.org>
Fri, 19 Nov 2010 19:12:07 +0000 (14:12 -0500)
committerAdam Langley <agl@golang.org>
Fri, 19 Nov 2010 19:12:07 +0000 (14:12 -0500)
commit07791d04d6a746ac1fbced541e46bae9e85178b4
treed3004ec0ce355620be4cdcc74ca3596fb00a618f
parentad21c42f05237a586d01885824a3b7dd76d823c6
crypto/cipher: add package

cipher is intended to replace crypto/block over time. This
change only adds basic parts: CBC and CTR mode and doesn't add
the package to the top-level Makefile.

R=r, rsc
CC=golang-dev
https://golang.org/cl/3069041
src/pkg/crypto/cipher/Makefile [new file with mode: 0644]
src/pkg/crypto/cipher/cbc.go [new file with mode: 0644]
src/pkg/crypto/cipher/cbc_aes_test.go [new file with mode: 0644]
src/pkg/crypto/cipher/cipher.go [new file with mode: 0644]
src/pkg/crypto/cipher/common_test.go [new file with mode: 0644]
src/pkg/crypto/cipher/ctr.go [new file with mode: 0644]
src/pkg/crypto/cipher/ctr_aes_test.go [new file with mode: 0644]
src/pkg/crypto/cipher/io.go [new file with mode: 0644]