From: Sergey Matveev Date: Sat, 5 May 2018 09:23:46 +0000 (+0300) Subject: Missing 34.11-2012 PBKDF2 typing stub X-Git-Tag: 3.15~29 X-Git-Url: http://www.git.cypherpunks.ru/?p=pygost.git;a=commitdiff_plain;h=0e3d739619034abdd601089bee4e2cfef6ec177b Missing 34.11-2012 PBKDF2 typing stub --- diff --git a/NEWS b/NEWS index a0ea75b..7f6ddc3 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,6 @@ +3.9: + Add missing 34.11-2012 PBKDF2 typing stub. + 3.8: * 34.11-2012 based PBKDF2 function added * 34.13-2015 does not require double blocksized IVs diff --git a/VERSION b/VERSION index cc1923a..bd28b9c 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -3.8 +3.9 diff --git a/pygost/stubs/pygost/gost34112012512.pyi b/pygost/stubs/pygost/gost34112012512.pyi index af944d0..1276e2e 100644 --- a/pygost/stubs/pygost/gost34112012512.pyi +++ b/pygost/stubs/pygost/gost34112012512.pyi @@ -17,3 +17,5 @@ class GOST34112012512(PEP247): def new(data: bytes=...) -> GOST34112012512: ... + +def pbkdf2(password: bytes, salt: bytes, iterations: int, dklen: int) -> bytes: ... diff --git a/www.texi b/www.texi index a9da4c6..98210a8 100644 --- a/www.texi +++ b/www.texi @@ -91,6 +91,9 @@ mailing list. Announcements also go to this mailing list. @unnumbered News @table @strong +@item 3.9 +Add missing 34.11-2012 PBKDF2 typing stub. + @item 3.8 @itemize @item 34.11-2012 based PBKDF2 function added