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