Add pygost deps

This commit is contained in:
Ivan Vazhenin
2023-08-30 19:10:53 +03:00
parent a90f60153a
commit a440d30b12
129 changed files with 20529 additions and 0 deletions
+24
View File
@@ -0,0 +1,24 @@
Frequently asked questions
**************************
My signature is not validated by other implementations. What is wrong?
Try to reverse it ("sign[::-1]"). Try to swap its halves
("sign[len(sign)/2:] + sign[:len(sign)/2]"). Try to reverse its
swapped halves too.
It is GOST: do you expect serialization unification?!
My signature is *still* not validated by other implementations!
Try to reverse digest you are signing/verifying ("dgst[::-1]").
It is GOST: do you expect serialization unification?!
Everything above did not help me. Does PyGOST sucks?
No way! You still have not tried to reverse your binary private
key, public key and swap its halves.
It is GOST: do you expect serialization unification?!