]> Cypherpunks.ru repositories - gogost.git/blob - src/cypherpunks.ru/gogost/gost28147/cfb.go
c94bdbbfc2d566ddc93bf552b42f56d2eefa68e8
[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 [BlockSize]byte) *CFBEncrypter {
25         return &CFBEncrypter{c, iv[:]}
26 }
27
28 func (c *CFBEncrypter) XORKeyStream(dst, src []byte) {
29         var n int
30         i := 0
31 MainLoop:
32         for {
33                 c.c.Encrypt(c.iv, c.iv)
34                 for n = 0; n < BlockSize; n++ {
35                         if i*BlockSize+n == len(src) {
36                                 break MainLoop
37                         }
38                         c.iv[n] ^= src[i*BlockSize+n]
39                         dst[i*BlockSize+n] = c.iv[n]
40                 }
41                 i++
42         }
43         return
44 }
45
46 type CFBDecrypter struct {
47         c  *Cipher
48         iv []byte
49 }
50
51 func (c *Cipher) NewCFBDecrypter(iv [BlockSize]byte) *CFBDecrypter {
52         return &CFBDecrypter{c, iv[:]}
53 }
54
55 func (c *CFBDecrypter) XORKeyStream(dst, src []byte) {
56         var n int
57         i := 0
58 MainLoop:
59         for {
60                 c.c.Encrypt(c.iv, c.iv)
61                 for n = 0; n < BlockSize; n++ {
62                         if i*BlockSize+n == len(src) {
63                                 break MainLoop
64                         }
65                         dst[i*BlockSize+n] = c.iv[n] ^ src[i*BlockSize+n]
66                         c.iv[n] = src[i*BlockSize+n]
67                 }
68                 i++
69         }
70         return
71 }