]> Cypherpunks.ru repositories - gogost.git/blob - src/cypherpunks.ru/gogost/mgm/mul_test.go
MGM mode
[gogost.git] / src / cypherpunks.ru / gogost / mgm / mul_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 mgm
18
19 import (
20         "crypto/rand"
21         "math/big"
22         "testing"
23
24         "cypherpunks.ru/gogost/gost3412128"
25         "cypherpunks.ru/gogost/gost341264"
26 )
27
28 func BenchmarkMul64(b *testing.B) {
29         x := make([]byte, gost341264.BlockSize)
30         y := make([]byte, gost341264.BlockSize)
31         rand.Read(x)
32         rand.Read(y)
33         mgm := MGM{
34                 x:      big.NewInt(0),
35                 y:      big.NewInt(0),
36                 z:      big.NewInt(0),
37                 maxBit: 64 - 1,
38                 r:      R64,
39                 mulBuf: make([]byte, gost341264.BlockSize),
40         }
41         b.ResetTimer()
42         for i := 0; i < b.N; i++ {
43                 mgm.mul(x, y)
44         }
45 }
46
47 func BenchmarkMul128(b *testing.B) {
48         x := make([]byte, gost3412128.BlockSize)
49         y := make([]byte, gost3412128.BlockSize)
50         rand.Read(x)
51         rand.Read(y)
52         mgm := MGM{
53                 x:      big.NewInt(0),
54                 y:      big.NewInt(0),
55                 z:      big.NewInt(0),
56                 maxBit: 128 - 1,
57                 r:      R128,
58                 mulBuf: make([]byte, gost3412128.BlockSize),
59         }
60         b.ResetTimer()
61         for i := 0; i < b.N; i++ {
62                 mgm.mul(x, y)
63         }
64 }