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