]> Cypherpunks.ru repositories - gogost.git/blob - src/cypherpunks.ru/gogost/gost28147/cfb.go
Simplify keys and IVs arguments passing: use slices instead of arrays
[gogost.git] / src / cypherpunks.ru / gogost / gost28147 / cfb.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 gost28147
18
19 type CFBEncrypter struct {
20         c  *Cipher
21         iv []byte
22 }
23
24 func (c *Cipher) NewCFBEncrypter(iv []byte) *CFBEncrypter {
25         if len(iv) != BlockSize {
26                 panic("iv length is not equal to blocksize")
27         }
28 }
29
30 func (c *CFBEncrypter) XORKeyStream(dst, src []byte) {
31         var n int
32         i := 0
33 MainLoop:
34         for {
35                 c.c.Encrypt(c.iv, c.iv)
36                 for n = 0; n < BlockSize; n++ {
37                         if i*BlockSize+n == len(src) {
38                                 break MainLoop
39                         }
40                         c.iv[n] ^= src[i*BlockSize+n]
41                         dst[i*BlockSize+n] = c.iv[n]
42                 }
43                 i++
44         }
45         return
46 }
47
48 type CFBDecrypter struct {
49         c  *Cipher
50         iv []byte
51 }
52
53 func (c *Cipher) NewCFBDecrypter(iv []byte) *CFBDecrypter {
54         if len(iv) != BlockSize {
55                 panic("iv length is not equal to blocksize")
56         }
57 }
58
59 func (c *CFBDecrypter) XORKeyStream(dst, src []byte) {
60         var n int
61         i := 0
62 MainLoop:
63         for {
64                 c.c.Encrypt(c.iv, c.iv)
65                 for n = 0; n < BlockSize; n++ {
66                         if i*BlockSize+n == len(src) {
67                                 break MainLoop
68                         }
69                         dst[i*BlockSize+n] = c.iv[n] ^ src[i*BlockSize+n]
70                         c.iv[n] = src[i*BlockSize+n]
71                 }
72                 i++
73         }
74         return
75 }