]> Cypherpunks.ru repositories - pygost.git/blob - NEWS
Unused variable
[pygost.git] / NEWS
1 4.0:
2     * 34.10-2012 TC26 twisted Edwards curve related parameters
3     * Coordinates conversion from twisted Edwards to Weierstrass
4       form and vice versa
5     * More test vectors
6     * Backward incompatible Sbox and curves parameters renaming, to
7       comply with OIDs identifying them:
8
9       Gost2814789_TestParamSet       -> id-Gost28147-89-TestParamSet
10       Gost28147_CryptoProParamSetA   -> id-Gost28147-89-CryptoPro-A-ParamSet
11       Gost28147_CryptoProParamSetB   -> id-Gost28147-89-CryptoPro-B-ParamSet
12       Gost28147_CryptoProParamSetC   -> id-Gost28147-89-CryptoPro-C-ParamSet
13       Gost28147_CryptoProParamSetD   -> id-Gost28147-89-CryptoPro-D-ParamSet
14       Gost28147_tc26_ParamZ          -> id-tc26-gost-28147-param-Z
15       GostR3411_94_TestParamSet      -> id-GostR3411-94-TestParamSet
16       GostR3411_94_CryptoProParamSet -> id-GostR3411-94-CryptoProParamSet
17
18       GostR3410_2001_TestParamSet            -> id-GostR3410-2001-TestParamSet
19       GostR3410_2001_CryptoPro_A_ParamSet    -> id-GostR3410-2001-CryptoPro-A-ParamSet
20       GostR3410_2001_CryptoPro_B_ParamSet    -> id-GostR3410-2001-CryptoPro-B-ParamSet
21       GostR3410_2001_CryptoPro_C_ParamSet    -> id-GostR3410-2001-CryptoPro-C-ParamSet
22       GostR3410_2001_CryptoPro_XchA_ParamSet -> id-GostR3410-2001-CryptoPro-XchA-ParamSet
23       GostR3410_2001_CryptoPro_XchB_ParamSet -> id-GostR3410-2001-CryptoPro-XchB-ParamSet
24       GostR3410_2012_TC26_256_ParamSetA      -> id-tc26-gost-3410-2012-256-paramSetA
25       GostR3410_2012_TC26_ParamSetA          -> id-tc26-gost-3410-12-512-paramSetA
26       GostR3410_2012_TC26_ParamSetB          -> id-tc26-gost-3410-12-512-paramSetB
27       GostR3410_2012_TC26_ParamSetC          -> id-tc26-gost-3410-2012-512-paramSetC
28
29     * Backward incompatible GOST3410Curve initialization: all parameters
30       are passed not as big-endian encoded binaries, but as integers
31     * Backward incompatible change: gost3410.CURVE_PARAMS is
32       disappeared. gost3410.CURVES dictionary holds already initialized
33       GOST3410Curve. Just use
34       CURVES["id-tc26-gost-3410-12-512-paramSetA"] instead of
35       GOST3410Curve(*CURVE_PARAMS["id-tc26-gost-3410-12-512-paramSetA"])
36
37 3.15:
38     * Licence changed back to GNU GPLv3+.
39       GNU LGPLv3+ licenced versions are not available anymore
40     * More ASN.1-based test vectors (PyDERASN dependency required)
41
42 3.14:
43     Add missing typing stubs related to previous release.
44
45 3.13:
46     * Ability to explicitly specify used 28147-89 Sbox in
47       pygost.wrap.* functions
48     * Ability to use key meshing in 28147-89 CBC mode
49
50 3.12:
51     * Added mode argument to pygost.gost3410_vko.kek_34102012256,
52       because 256-bit private keys can be used with that algorithm too
53     * Fix incorrect degree sanitizing in pygost.gost3410.GOST3410Curve.exp
54       preventing using of UKM=1 in @code{pygost.gost3410_vko.kek_*} functions
55
56 3.11:
57     Fixed PEP247 typing stub with invalid hexdigest method.
58
59 3.10:
60     Additional missing 34.11-* typing stubs.
61
62 3.9:
63     Add missing 34.11-2012 PBKDF2 typing stub.
64
65 3.8:
66     * 34.11-2012 based PBKDF2 function added
67     * 34.13-2015 does not require double blocksized IVs
68
69 3.7:
70     Fixed 34.13-2015 OFB bug with IVs longer than 2 blocks.
71
72 3.6:
73     Fixed source files installation during setup.py install invocation.
74
75 3.5:
76     Dummy release: added long description in package metadata.
77
78 3.4:
79     * Small mypy stubs related fixes
80     * Licence changed from GNU GPLv3+ to GNU LGPLv3+
81
82 3.3:
83     * GOST3412Kuz renamed to GOST3412Kuznechik
84     * GOST3412Magma implements GOST R 34.12-2015 Magma 64-bit block cipher
85
86 3.2:
87     34.13-2015 block cipher modes of operation implementations.
88
89 3.1:
90     Fixed mypy stubs related to PEP247-successors.
91
92 3.0:
93     * gost3411_94 renamed to gost341194
94     * gost3411_2012 renamed and split to gost34112012256, gost34112012512
95     * GOST34112012 split to GOST34112012256, GOST34112012512
96     * gost3410.kek moved to separate gost3410_vko.kek_34102001
97     * VKO GOST R 34.10-2012 appeared in gost3410_vko, with test vectors
98     * 34.11-94 digest is reversed, to be compatible with HMAC and
99       PBKDF2 test vectors describe in TC26 documents
100     * 34.11-94 PBKDF2 test vectors added
101     * gost3410.prv_unmarshal, gost3410.pub_marshal, gost3410.pub_unmarshal
102       helpers added, removing the need of x509 module at all
103     * gost3410.verify requires (pubX, pubY) tuple, instead of two separate
104       pubX, pubY arguments
105     * 34.11-94 based PBKDF2 function added
106
107 2.4:
108     Fixed 34.13 mypy stub.
109
110 2.3:
111     Typo and pylint fixes.
112
113 2.2:
114     GOST R 34.13-2015 padding methods.
115
116 2.1:
117     Documentation and supplementary files refactoring.
118
119 2.0:
120     PEP-0247 compatible hashers and MAC.
121
122 1.0:
123     * Ability to specify curve in pygost.x509 module
124     * Ability to use 34.10-2012 in pygost.x509 functions
125
126     Renamed classes and modules:
127
128     * pygost.gost3410.SIZE_34100 -> pygost.gost3410.SIZE_3410_2001
129     * pygost.gost3410.SIZE_34112 -> pygost.gost3410.SIZE_3410_2012
130     * pygost.gost3411_12.GOST341112 -> pygost.gost3411_2012.GOST34112012
131
132 0.16:
133     34.10-2012 TC26 curve parameters.
134
135 0.15:
136     PEP-0484 static typing hints.
137
138 0.14:
139     34.10-2012 workability fix.
140
141 0.13:
142     Python3 compatibility.
143
144 0.11:
145     GOST R 34.12-2015 Кузнечик (Kuznechik) implementation.
146
147 0.10:
148     CryptoPro and GOST key wrapping, CryptoPro key meshing.