
This revision was committed January 7, 2014. The next revision deleted runtime/mfinal.c. That will be done in a subsequent merge. This merge changes type descriptors to add a zero field, pointing to a zero value for that type. This is implemented as a common variable. * go-gcc.cc (Gcc_backend::implicit_variable): Add is_common and alignment parameters. Permit init parameter to be NULL. From-SVN: r211249
38 lines
950 B
Go
38 lines
950 B
Go
// Copyright 2010 The Go Authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style
|
|
// license that can be found in the LICENSE file.
|
|
|
|
package cipher_test
|
|
|
|
import (
|
|
"bytes"
|
|
"crypto/aes"
|
|
"crypto/cipher"
|
|
"crypto/rand"
|
|
"testing"
|
|
)
|
|
|
|
func TestCFB(t *testing.T) {
|
|
block, err := aes.NewCipher(commonKey128)
|
|
if err != nil {
|
|
t.Error(err)
|
|
return
|
|
}
|
|
|
|
plaintext := []byte("this is the plaintext. this is the plaintext.")
|
|
iv := make([]byte, block.BlockSize())
|
|
rand.Reader.Read(iv)
|
|
cfb := cipher.NewCFBEncrypter(block, iv)
|
|
ciphertext := make([]byte, len(plaintext))
|
|
copy(ciphertext, plaintext)
|
|
cfb.XORKeyStream(ciphertext, ciphertext)
|
|
|
|
cfbdec := cipher.NewCFBDecrypter(block, iv)
|
|
plaintextCopy := make([]byte, len(plaintext))
|
|
copy(plaintextCopy, ciphertext)
|
|
cfbdec.XORKeyStream(plaintextCopy, plaintextCopy)
|
|
|
|
if !bytes.Equal(plaintextCopy, plaintext) {
|
|
t.Errorf("got: %x, want: %x", plaintextCopy, plaintext)
|
|
}
|
|
}
|