]> Cypherpunks.ru repositories - gogost.git/blob - gost341264/cipher_test.go
Raise copyright years
[gogost.git] / gost341264 / cipher_test.go
1 // GoGOST -- Pure Go GOST cryptographic functions library
2 // Copyright (C) 2015-2020 Sergey Matveev <stargrave@stargrave.org>
3 //
4 // This program is free software: you can redistribute it and/or modify
5 // it under the terms of the GNU General Public License as published by
6 // the Free Software Foundation, version 3 of the License.
7 //
8 // This program is distributed in the hope that it will be useful,
9 // but WITHOUT ANY WARRANTY; without even the implied warranty of
10 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
11 // GNU General Public License for more details.
12 //
13 // You should have received a copy of the GNU General Public License
14 // along with this program.  If not, see <http://www.gnu.org/licenses/>.
15
16 package gost341264
17
18 import (
19         "bytes"
20         "crypto/cipher"
21         "testing"
22 )
23
24 func TestCipherInterface(t *testing.T) {
25         var _ cipher.Block = NewCipher(make([]byte, KeySize))
26 }
27
28 func TestVector(t *testing.T) {
29         key := []byte{
30                 0xff, 0xee, 0xdd, 0xcc, 0xbb, 0xaa, 0x99, 0x88,
31                 0x77, 0x66, 0x55, 0x44, 0x33, 0x22, 0x11, 0x00,
32                 0xf0, 0xf1, 0xf2, 0xf3, 0xf4, 0xf5, 0xf6, 0xf7,
33                 0xf8, 0xf9, 0xfa, 0xfb, 0xfc, 0xfd, 0xfe, 0xff,
34         }
35         pt := [BlockSize]byte{0xfe, 0xdc, 0xba, 0x98, 0x76, 0x54, 0x32, 0x10}
36         ct := [BlockSize]byte{0x4e, 0xe9, 0x01, 0xe5, 0xc2, 0xd8, 0xca, 0x3d}
37         c := NewCipher(key)
38         dst := make([]byte, BlockSize)
39         c.Encrypt(dst, pt[:])
40         if bytes.Compare(dst, ct[:]) != 0 {
41                 t.FailNow()
42         }
43         c.Decrypt(dst, dst)
44         if bytes.Compare(dst, pt[:]) != 0 {
45                 t.FailNow()
46         }
47 }