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