]> Cypherpunks.ru repositories - pygost.git/blobdiff - README
Sbox/curve parameters names comply with OIDs
[pygost.git] / README
diff --git a/README b/README
index 1594ebfa5e34237d12ac7b2a5cd2a1045530c9ae..c10bcbdb1770a4b1b6caa6bb736d70d4dcf71f5a 100644 (file)
--- a/README
+++ b/README
@@ -15,7 +15,7 @@ GOST is GOvernment STandard of Russian Federation (and Soviet Union).
 * VKO GOST R 34.10-2001 key agreement function (RFC 4357)
 * VKO GOST R 34.10-2012 key agreement function (RFC 7836)
 * 28147-89 and CryptoPro key wrapping (RFC 4357)
-* 28147-89 CryptoPro key meshing for CFB mode (RFC 4357)
+* 28147-89 CryptoPro key meshing for CFB and CBC modes (RFC 4357)
 * RFC 4491 (using GOST algorithms with X.509) compatibility helpers
 * GOST R 34.12-2015 128-bit block cipher Кузнечик (Kuznechik) (RFC 7801)
 * GOST R 34.12-2015 64-bit block cipher Магма (Magma)
@@ -29,7 +29,7 @@ Example 34.10-2012 keypair generation, signing and verifying:
 
     >>> from pygost.gost3410 import CURVE_PARAMS
     >>> from pygost.gost3410 import GOST3410Curve
-    >>> curve = GOST3410Curve(*CURVE_PARAMS["GostR3410_2012_TC26_ParamSetA"])
+    >>> curve = GOST3410Curve(*CURVE_PARAMS["id-tc26-gost-3410-12-512-paramSetA"])
     >>> from os import urandom
     >>> prv_raw = urandom(32)
     >>> from pygost.gost3410 import prv_unmarshal