]> Cypherpunks.ru repositories - gogost.git/blob - news.texi
Mention CACert, GOPRIVATE and go.mod-replace during installation
[gogost.git] / news.texi
1 @node News
2 @unnumbered News
3
4 @table @strong
5
6 @anchor{Release 4.1.0}
7 @item 4.1.0
8     @itemize
9     @item @code{ESPTREE} implementation
10     @item @code{CurveIdtc26gost34102012256paramSetB},
11         @code{CurveIdtc26gost34102012256paramSetC},
12         @code{CurveIdtc26gost34102012256paramSetD} curve aliases
13     @item Forbid any later GNU GPL version autousage
14         (project's licence now is GNU GPLv3 only)
15     @item Project now is @command{go get}-able and uses
16         @code{go.cypherpunks.ru} namespace:
17         @command{go get go.cypherpunks.ru/gogost},
18         @command{go get go.cypherpunks.ru/gogost/cmd/streebog@{256,512@}}.
19     @end itemize
20
21 @anchor{Release 4.0}
22 @item 4.0
23     @itemize
24     @item Backward incompatible change: all keys passing to encryption
25         functions are slices now, not the fixed arrays. That heavily
26         simplifies the library usage
27     @item Fix bug with overwriting IVs memory in @code{gost28147.CFB*crypter}
28     @item @code{TLSTREE}, used in TLS 1.[23], implementation
29     @item @code{gost3410.KEK2012*} can be used with any curves, not only 512-bit ones
30     @item @code{gost3410.PrivateKey} satisfies @code{crypto.Signer} interface
31     @item @code{gost34112012*} hashes satisfy @code{encoding.Binary(Un)Marshaler}
32     @item Streebog256 HKDF test vectors
33     @end itemize
34
35 @anchor{Release 3.0}
36 @item 3.0
37     @itemize
38     @item Multilinear Galois Mode (MGM) block cipher mode for
39       64 and 128 bit ciphers
40     @item @code{KDF_GOSTR3411_2012_256} KDF
41     @item 34.12-2015 64-bit block cipher Магма (Magma)
42     @item Additional EAC 28147-89 Sbox
43     @item 34.10-2012 TC26 twisted Edwards curve related parameters
44     @item Coordinates conversion from twisted Edwards to Weierstrass
45       form and vice versa
46     @item Fixed @code{gost3410.PrivateKey}'s length validation
47     @item Backward incompatible change: @code{gost3410.NewCurve} takes
48       @code{big.Int}, instead of encoded integers
49     @item Backward incompatible Sbox and curves parameters renaming, to
50       comply with OIDs identifying them:
51 @verbatim
52 Gost2814789_TestParamSet       -> SboxIdGost2814789TestParamSet
53 Gost28147_CryptoProParamSetA   -> SboxIdGost2814789CryptoProAParamSet
54 Gost28147_CryptoProParamSetB   -> SboxIdGost2814789CryptoProBParamSet
55 Gost28147_CryptoProParamSetC   -> SboxIdGost2814789CryptoProCParamSet
56 Gost28147_CryptoProParamSetD   -> SboxIdGost2814789CryptoProDParamSet
57 GostR3411_94_TestParamSet      -> SboxIdGostR341194TestParamSet
58 Gost28147_tc26_ParamZ          -> SboxIdtc26gost28147paramZ
59 GostR3411_94_CryptoProParamSet -> SboxIdGostR341194CryptoProParamSet
60 EACParamSet                    -> SboxEACParamSet
61
62 CurveParamsGostR34102001cc            -> CurveGostR34102001ParamSetcc
63 CurveParamsGostR34102001Test          -> CurveIdGostR34102001TestParamSet
64 CurveParamsGostR34102001CryptoProA    -> CurveIdGostR34102001CryptoProAParamSet
65 CurveParamsGostR34102001CryptoProB    -> CurveIdGostR34102001CryptoProBParamSet
66 CurveParamsGostR34102001CryptoProC    -> CurveIdGostR34102001CryptoProCParamSet
67 CurveParamsGostR34102001CryptoProXchA -> CurveIdGostR34102001CryptoProXchAParamSet
68 CurveParamsGostR34102001CryptoProXchB -> CurveIdGostR34102001CryptoProXchBParamSet
69 CurveParamsGostR34102012TC26ParamSetA -> CurveIdtc26gost341012512paramSetA
70 CurveParamsGostR34102012TC26ParamSetB -> CurveIdtc26gost341012512paramSetB
71 @end verbatim
72     @item Various additional test vectors
73     @item go modules friendliness
74     @end itemize
75
76 @anchor{Release 2.0}
77 @item 2.0
78     @itemize
79     @item 34.11-2012 is split on two different modules:
80         @code{gost34112012256} and @code{gost34112012512}
81     @item 34.11-94's digest is reversed. Now it is compatible with TC26's
82       HMAC and PBKDF2 test vectors
83     @item @code{gogost-streebog} is split to @code{streebog256} and
84         @code{streebog512} correspondingly by analogy with sha* utilities
85     @item added VKO 34.10-2012 support with corresponding test vectors
86     @item @code{gost3410.DigestSizeX} is renamed to
87         @code{gost3410.ModeX} because it is not related to digest size,
88         but parameters and key sizes
89     @item KEK functions take @code{big.Int} UKM value. Use @code{NewUKM}
90         to unmarshal raw binary UKM
91     @end itemize
92
93 @anchor{Release 1.1}
94 @item 1.1
95     @itemize
96     @item gogost-streebog is able to use either 256 or 512 bits digest size
97     @item 34.13-2015 padding methods
98     @item 28147-89 CBC mode of operation
99     @end itemize
100
101 @end table