]> Cypherpunks.ru repositories - pygost.git/blob - NEWS
Missing typing stubs
[pygost.git] / NEWS
1 3.14:
2     Add missing typing stubs related to previous release.
3
4 3.13:
5     * Ability to explicitly specify used 28147-89 Sbox in
6       pygost.wrap.* functions
7     * Ability to use key meshing in 28147-89 CBC mode
8
9 3.12:
10     * Added mode argument to pygost.gost3410_vko.kek_34102012256,
11       because 256-bit private keys can be used with that algorithm too
12     * Fix incorrect degree sanitizing in pygost.gost3410.GOST3410Curve.exp
13       preventing using of UKM=1 in @code{pygost.gost3410_vko.kek_*} functions
14
15 3.11:
16     Fixed PEP247 typing stub with invalid hexdigest method.
17
18 3.10:
19     Additional missing 34.11-* typing stubs.
20
21 3.9:
22     Add missing 34.11-2012 PBKDF2 typing stub.
23
24 3.8:
25     * 34.11-2012 based PBKDF2 function added
26     * 34.13-2015 does not require double blocksized IVs
27
28 3.7:
29     Fixed 34.13-2015 OFB bug with IVs longer than 2 blocks.
30
31 3.6:
32     Fixed source files installation during setup.py install invocation.
33
34 3.5:
35     Dummy release: added long description in package metadata.
36
37 3.4:
38     Small mypy stubs related fixes.
39
40 3.3:
41     * GOST3412Kuz renamed to GOST3412Kuznechik
42     * GOST3412Magma implements GOST R 34.12-2015 Magma 64-bit block cipher
43
44 3.2:
45     34.13-2015 block cipher modes of operation implementations.
46
47 3.1:
48     Fixed mypy stubs related to PEP247-successors.
49
50 3.0:
51     * gost3411_94 renamed to gost341194
52     * gost3411_2012 renamed and split to gost34112012256, gost34112012512
53     * GOST34112012 split to GOST34112012256, GOST34112012512
54     * gost3410.kek moved to separate gost3410_vko.kek_34102001
55     * VKO GOST R 34.10-2012 appeared in gost3410_vko, with test vectors
56     * 34.11-94 digest is reversed, to be compatible with HMAC and
57       PBKDF2 test vectors describe in TC26 documents
58     * 34.11-94 PBKDF2 test vectors added
59     * gost3410.prv_unmarshal, gost3410.pub_marshal, gost3410.pub_unmarshal
60       helpers added, removing the need of x509 module at all
61     * gost3410.verify requires (pubX, pubY) tuple, instead of two separate
62       pubX, pubY arguments
63     * 34.11-94 based PBKDF2 function added
64
65 2.4:
66     Fixed 34.13 mypy stub.
67
68 2.3:
69     Typo and pylint fixes.
70
71 2.2:
72     GOST R 34.13-2015 padding methods.
73
74 2.1:
75     Documentation and supplementary files refactoring.
76
77 2.0:
78     PEP-0247 compatible hashers and MAC.
79
80 1.0:
81     * Ability to specify curve in pygost.x509 module
82     * Ability to use 34.10-2012 in pygost.x509 functions
83
84     Renamed classes and modules:
85
86     * pygost.gost3410.SIZE_34100 -> pygost.gost3410.SIZE_3410_2001
87     * pygost.gost3410.SIZE_34112 -> pygost.gost3410.SIZE_3410_2012
88     * pygost.gost3411_12.GOST341112 -> pygost.gost3411_2012.GOST34112012
89
90 0.16:
91     34.10-2012 TC26 curve parameters.
92
93 0.15:
94     PEP-0484 static typing hints.
95
96 0.14:
97     34.10-2012 workability fix.
98
99 0.13:
100     Python3 compatibility.
101
102 0.11:
103     GOST R 34.12-2015 Кузнечик (Kuznechik) implementation.
104
105 0.10:
106     CryptoPro and GOST key wrapping, CryptoPro key meshing.