]> Cypherpunks.ru repositories - pygost.git/commitdiff
Missing DEFAULT_CURVE in stubs
authorSergey Matveev <stargrave@stargrave.org>
Fri, 16 Jun 2017 08:00:01 +0000 (11:00 +0300)
committerSergey Matveev <stargrave@stargrave.org>
Fri, 16 Jun 2017 08:00:01 +0000 (11:00 +0300)
pygost/stubs/pygost/gost3410.pyi

index 3f93d71bb217035277669e92913e955566dfd1de..4b4ea5d16da465a7973e89a0ee7231570053bc8e 100644 (file)
@@ -2,6 +2,7 @@ from typing import Dict
 from typing import Tuple
 
 
+DEFAULT_CURVE = ...  # type: str
 CURVE_PARAMS = ...  # type: Dict[str, Tuple[bytes, bytes, bytes, bytes, bytes, bytes]]
 PublicKey = Tuple[int, int]