public inbox for gost@lists.cypherpunks.ru
Atom feed
* [pygost][patch] Add GOST3410Curve.point_size property stub
@ 2020-09-24 17:38 Nekolyanich
  2020-09-24 17:55 ` Sergey Matveev
  0 siblings, 1 reply; 2+ messages in thread
From: Nekolyanich @ 2020-09-24 17:38 UTC (permalink / raw)
  To: gost


[-- Attachment #1.1.1: Type: text/plain, Size: 2 bytes --]



[-- Attachment #1.1.2: 0001-Add-GOST3410Curve.point_size-property-stub.patch --]
[-- Type: text/x-patch, Size: 737 bytes --]

From a5fd50568c65d4657d44d489d25f77898037ec72 Mon Sep 17 00:00:00 2001
From: nekolyanich <gmail@nekolyanich•com>
Date: Thu, 24 Sep 2020 20:29:53 +0300
Subject: [PATCH] Add GOST3410Curve.point_size property stub

---
 pygost/stubs/pygost/gost3410.pyi | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/pygost/stubs/pygost/gost3410.pyi b/pygost/stubs/pygost/gost3410.pyi
index 5278c81..7f55fa9 100644
--- a/pygost/stubs/pygost/gost3410.pyi
+++ b/pygost/stubs/pygost/gost3410.pyi
@@ -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: ...
 
-- 
2.28.0


[-- Attachment #1.1.3: OpenPGP_0x356BA5E24DF27D7B.asc --]
[-- Type: application/pgp-keys, Size: 4645 bytes --]

[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 495 bytes --]

^ permalink raw reply related	[flat|nested] 2+ messages in thread

* Re: [pygost][patch] Add GOST3410Curve.point_size property stub
  2020-09-24 17:38 [pygost][patch] Add GOST3410Curve.point_size property stub Nekolyanich
@ 2020-09-24 17:55 ` Sergey Matveev
  0 siblings, 0 replies; 2+ messages in thread
From: Sergey Matveev @ 2020-09-24 17:55 UTC (permalink / raw)
  To: Nekolyanich; +Cc: gost

[-- Attachment #1: Type: text/plain, Size: 147 bytes --]

Thanks! Applied in master branch.

-- 
Sergey Matveev (http://www.stargrave.org/)
OpenPGP: CF60 E89A 5923 1E76 E263  6422 AE1A 8109 E498 57EF

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2020-09-24 17:55 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-09-24 17:38 [pygost][patch] Add GOST3410Curve.point_size property stub Nekolyanich
2020-09-24 17:55 ` Sergey Matveev