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