1
0
mirror of https://github.com/golang/go synced 2024-11-21 15:04:44 -07:00

crypto/openpgp: build fix (unreviewed)

R=agl
CC=golang-dev
https://golang.org/cl/4572057
This commit is contained in:
Adam Langley 2011-06-10 13:32:20 -04:00
parent f0d21a773f
commit 531c01d990

View File

@ -81,7 +81,7 @@ const mdcPlaintextHex = "a302789c3b2d93c4e0eb9aba22283539b3203335af44a134afb800c
func TestSerialize(t *testing.T) {
buf := bytes.NewBuffer(nil)
c := CipherAES128
key := make([]byte, c.keySize())
key := make([]byte, c.KeySize())
w, err := SerializeSymmetricallyEncrypted(buf, c, key)
if err != nil {