]> Cypherpunks.ru repositories - pygost.git/blob - news.texi
Do not ignore INSTALL/NEWS for visibility
[pygost.git] / news.texi
1 @node News
2 @unnumbered News
3
4 @table @strong
5
6 @anchor{Release 4.3}
7 @item 4.3
8 Dummy release with fixed @code{pygost.__version__}.
9
10 @anchor{Release 4.2}
11 @item 4.2
12     @itemize
13     @item @code{pygost.gost3410.sign} accepts predefined @code{rand}om
14         data used for k/r generation
15     @item More test vectors for 34.10-2012
16     @end itemize
17
18 @anchor{Release 4.1}
19 @item 4.1
20     @itemize
21     @item PEP-396 compatible module's @code{__version__}
22     @item Curve parameters aliases:
23 @verbatim
24 id-GostR3410-2001-CryptoPro-XchA-ParamSet -> id-GostR3410-2001-CryptoPro-A-ParamSet
25 id-GostR3410-2001-CryptoPro-XchB-ParamSet -> id-GostR3410-2001-CryptoPro-C-ParamSet
26 id-tc26-gost-3410-2012-256-paramSetB      -> id-GostR3410-2001-CryptoPro-A-ParamSet
27 id-tc26-gost-3410-2012-256-paramSetC      -> id-GostR3410-2001-CryptoPro-B-ParamSet
28 id-tc26-gost-3410-2012-256-paramSetD      -> id-GostR3410-2001-CryptoPro-C-ParamSet
29 @end verbatim
30     @item Forbid any later GNU GPL version autousage (project's licence
31         now is GNU GPLv3 only)
32     @end itemize
33
34 @anchor{Release 4.0}
35 @item 4.0
36     @itemize
37     @item 34.10-2012 TC26 twisted Edwards curve related parameters
38     @item Coordinates conversion from twisted Edwards to Weierstrass
39         form and vice versa
40     @item More test vectors
41     @item Backward incompatible Sbox and curves parameters renaming,
42         to comply with OIDs identifying them:
43 @verbatim
44 Gost2814789_TestParamSet       -> id-Gost28147-89-TestParamSet
45 Gost28147_CryptoProParamSetA   -> id-Gost28147-89-CryptoPro-A-ParamSet
46 Gost28147_CryptoProParamSetB   -> id-Gost28147-89-CryptoPro-B-ParamSet
47 Gost28147_CryptoProParamSetC   -> id-Gost28147-89-CryptoPro-C-ParamSet
48 Gost28147_CryptoProParamSetD   -> id-Gost28147-89-CryptoPro-D-ParamSet
49 Gost28147_tc26_ParamZ          -> id-tc26-gost-28147-param-Z
50 GostR3411_94_TestParamSet      -> id-GostR3411-94-TestParamSet
51 GostR3411_94_CryptoProParamSet -> id-GostR3411-94-CryptoProParamSet
52
53 GostR3410_2001_TestParamSet            -> id-GostR3410-2001-TestParamSet
54 GostR3410_2001_CryptoPro_A_ParamSet    -> id-GostR3410-2001-CryptoPro-A-ParamSet
55 GostR3410_2001_CryptoPro_B_ParamSet    -> id-GostR3410-2001-CryptoPro-B-ParamSet
56 GostR3410_2001_CryptoPro_C_ParamSet    -> id-GostR3410-2001-CryptoPro-C-ParamSet
57 GostR3410_2001_CryptoPro_XchA_ParamSet -> id-GostR3410-2001-CryptoPro-XchA-ParamSet
58 GostR3410_2001_CryptoPro_XchB_ParamSet -> id-GostR3410-2001-CryptoPro-XchB-ParamSet
59 GostR3410_2012_TC26_256_ParamSetA      -> id-tc26-gost-3410-2012-256-paramSetA
60 GostR3410_2012_TC26_ParamSetA          -> id-tc26-gost-3410-12-512-paramSetA
61 GostR3410_2012_TC26_ParamSetB          -> id-tc26-gost-3410-12-512-paramSetB
62 GostR3410_2012_TC26_ParamSetC          -> id-tc26-gost-3410-2012-512-paramSetC
63 @end verbatim
64     @item Backward incompatible @code{GOST3410Curve} initialization: all
65         parameters are passed not as big-endian encoded binaries, but as
66         integers
67     @item Backward incompatible change: @code{gost3410.CURVE_PARAMS} is
68       disappeared. @code{gost3410.CURVES} dictionary holds already
69       initialized @code{GOST3410Curve}. Just use
70       @code{CURVES["id-tc26-gost-3410-12-512-paramSetA"]} instead of
71       @code{GOST3410Curve(*CURVE_PARAMS["id-tc26-gost-3410-12-512-paramSetA"])}
72     @end itemize
73
74 @anchor{Release 3.15}
75 @item 3.15
76     @itemize
77     @item Licence changed back to GNU GPLv3+. GNU LGPLv3+ licenced
78         versions are not available anymore
79     @item More ASN.1-based test vectors
80         (@url{http://pyderasn.cypherpunks.ru/, PyDERASN} dependency required)
81     @end itemize
82
83 @anchor{Release 3.14}
84 @item 3.14
85 Add missing typing stubs related to previous release.
86
87 @anchor{Release 3.13}
88 @item 3.13
89     @itemize
90     @item Ability to explicitly specify used 28147-89 Sbox in
91         @code{pygost.wrap.*} functions
92     @item Ability to use key meshing in 28147-89 CBC mode
93     @end itemize
94
95 @anchor{Release 3.12}
96 @item 3.12
97     @itemize
98     @item Added mode argument to @code{pygost.gost3410_vko.kek_34102012256},
99         because 256-bit private keys can be used with that algorithm too.
100     @item Fix incorrect degree sanitizing in
101         @code{pygost.gost3410.GOST3410Curve.exp} preventing using of
102         @code{UKM=1} in @code{pygost.gost3410_vko.kek_*} functions.
103     @end itemize
104
105 @anchor{Release 3.11}
106 @item 3.11
107 Fixed PEP247 typing stub with invalid hexdigest method.
108
109 @anchor{Release 3.10}
110 @item 3.10
111 Additional missing 34.11-* typing stubs.
112
113 @anchor{Release 3.9}
114 @item 3.9
115 Add missing 34.11-2012 PBKDF2 typing stub.
116
117 @anchor{Release 3.8}
118 @item 3.8
119     @itemize
120     @item 34.11-2012 based PBKDF2 function added
121     @item 34.13-2015 does not require double blocksized IVs
122     @end itemize
123
124 @anchor{Release 3.7}
125 @item 3.7
126 Fixed 34.13-2015 OFB bug with IVs longer than 2 blocks.
127
128 @anchor{Release 3.6}
129 @item 3.6
130 Fixed source files installation during @command{setup.py install} invocation.
131
132 @anchor{Release 3.5}
133 @item 3.5
134 Dummy release: added long description in package metadata.
135
136 @anchor{Release 3.4}
137 @item 3.4
138     @itemize
139     @item Small mypy stubs related fixes
140     @item Licence changed from GNU GPLv3+ to GNU LGPLv3+
141     @end itemize
142
143 @anchor{Release 3.3}
144 @item 3.3
145     @itemize
146     @item @code{GOST3412Kuz} renamed to @code{GOST3412Kuznechik}
147     @item @code{GOST3412Magma} implements GOST R 34.12-2015 Magma 64-bit
148         block cipher
149     @end itemize
150
151 @anchor{Release 3.2}
152 @item 3.2
153 34.13-2015 block cipher modes of operation implementations.
154
155 @anchor{Release 3.1}
156 @item 3.1
157 Fixed mypy stubs related to PEP247-successors.
158
159 @anchor{Release 3.0}
160 @item 3.0
161     @itemize
162     @item @code{gost3411_94} renamed to @code{gost341194}
163     @item @code{gost3411_2012} renamed and split to
164         @code{gost34112012256}, @code{gost34112012512}
165     @item @code{GOST34112012} split to
166         @code{GOST34112012256}, @code{GOST34112012512}
167     @item @code{gost3410.kek} moved to separate
168         @code{gost3410_vko.kek_34102001}
169     @item VKO GOST R 34.10-2012 appeared in @code{gost3410_vko},
170         with test vectors
171     @item 34.11-94 digest is reversed, to be compatible with HMAC and
172         PBKDF2 test vectors describe in TC26 documents
173     @item 34.11-94 PBKDF2 test vectors added
174     @item @code{gost3410.prv_unmarshal},
175         @code{gost3410.pub_marshal},
176         @code{gost3410.pub_unmarshal}
177         helpers added, removing the need of @code{x509} module at all
178     @item @code{gost3410.verify} requires @code{(pubX, pubY)} tuple,
179         instead of two separate @code{pubX}, @code{pubY} arguments
180     @item 34.11-94 based PBKDF2 function added
181     @end itemize
182
183 @anchor{Release 2.4}
184 @item 2.4
185 Fixed 34.13 mypy stub.
186
187 @anchor{Release 2.3}
188 @item 2.3
189 Typo and pylint fixes.
190
191 @item 2.2
192 GOST R 34.13-2015 padding methods.
193
194 @item 2.1
195 Documentation and supplementary files refactoring.
196
197 @item 2.0
198 PEP-0247 compatible hashers and MAC.
199
200 @item 1.0
201     @itemize
202     @item Ability to specify curve in pygost.x509 module
203     @item Ability to use 34.10-2012 in pygost.x509 functions
204     @item Renamed classes and modules:
205 @verbatim
206 pygost.gost3410.SIZE_34100 -> pygost.gost3410.SIZE_3410_2001
207 pygost.gost3410.SIZE_34112 -> pygost.gost3410.SIZE_3410_2012
208 pygost.gost3411_12.GOST341112 -> pygost.gost3411_2012.GOST34112012
209 @end verbatim
210     @end itemize
211
212 @item 0.16
213 34.10-2012 TC26 curve parameters.
214
215 @item 0.15
216 PEP-0484 static typing hints.
217
218 @item 0.14
219 34.10-2012 workability fix.
220
221 @item 0.13
222 Python3 compatibility.
223
224 @item 0.11
225 GOST R 34.12-2015 Кузнечик (Kuznechik) implementation.
226
227 @item 0.10
228 CryptoPro and GOST key wrapping, CryptoPro key meshing.
229
230 @end table