]> Cypherpunks.ru repositories - pygost.git/commitdiff
Add GOST3410Curve.point_size property stub
authornekolyanich <gmail@nekolyanich.com>
Thu, 24 Sep 2020 17:29:53 +0000 (20:29 +0300)
committerSergey Matveev <stargrave@stargrave.org>
Thu, 24 Sep 2020 17:53:38 +0000 (20:53 +0300)
pygost/stubs/pygost/gost3410.pyi

index 5278c81f30fc2308888bdfe26ddd3cefdc1c488e..7f55fa9c2b9ba0fd83b1260ff516bd7e9ee89840 100644 (file)
@@ -37,6 +37,9 @@ class GOST3410Curve(object):
 
     def st(self) -> Tuple[int, int]: ...
 
+    @property
+    def point_size(self) -> int: ...
+
 
 def public_key(curve: GOST3410Curve, prv: int) -> PublicKey: ...