Commit 531c01d9 authored by Adam Langley's avatar Adam Langley

crypto/openpgp: build fix (unreviewed)

R=agl
CC=golang-dev
https://golang.org/cl/4572057
parent f0d21a77
...@@ -81,7 +81,7 @@ const mdcPlaintextHex = "a302789c3b2d93c4e0eb9aba22283539b3203335af44a134afb800c ...@@ -81,7 +81,7 @@ const mdcPlaintextHex = "a302789c3b2d93c4e0eb9aba22283539b3203335af44a134afb800c
func TestSerialize(t *testing.T) { func TestSerialize(t *testing.T) {
buf := bytes.NewBuffer(nil) buf := bytes.NewBuffer(nil)
c := CipherAES128 c := CipherAES128
key := make([]byte, c.keySize()) key := make([]byte, c.KeySize())
w, err := SerializeSymmetricallyEncrypted(buf, c, key) w, err := SerializeSymmetricallyEncrypted(buf, c, key)
if err != nil { if err != nil {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment