]> Cypherpunks.ru repositories - gogost.git/blob - src/cypherpunks.ru/gogost/gost341264/cipher_test.go
592c121452197df03a37760e804744b263b3baf0
[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 key [32]byte
27         var _ cipher.Block = NewCipher(key)
28 }
29
30 func TestVector(t *testing.T) {
31         key := [KeySize]byte{
32                 0xff, 0xee, 0xdd, 0xcc, 0xbb, 0xaa, 0x99, 0x88,
33                 0x77, 0x66, 0x55, 0x44, 0x33, 0x22, 0x11, 0x00,
34                 0xf0, 0xf1, 0xf2, 0xf3, 0xf4, 0xf5, 0xf6, 0xf7,
35                 0xf8, 0xf9, 0xfa, 0xfb, 0xfc, 0xfd, 0xfe, 0xff,
36         }
37         pt := [BlockSize]byte{0xfe, 0xdc, 0xba, 0x98, 0x76, 0x54, 0x32, 0x10}
38         ct := [BlockSize]byte{0x4e, 0xe9, 0x01, 0xe5, 0xc2, 0xd8, 0xca, 0x3d}
39         c := NewCipher(key)
40         dst := make([]byte, BlockSize)
41         c.Encrypt(dst, pt[:])
42         if bytes.Compare(dst, ct[:]) != 0 {
43                 t.FailNow()
44         }
45         c.Decrypt(dst, dst)
46         if bytes.Compare(dst, pt[:]) != 0 {
47                 t.FailNow()
48         }
49 }