]> Cypherpunks.ru repositories - gogost.git/blob - faq.texi
Streebog-512 PBKDF2 test vectors
[gogost.git] / faq.texi
1 @node FAQ
2 @unnumbered Frequently asked questions
3
4 @set ItIsGOSTBaby It is GOST: do you expect serialization unification?
5
6 @table @asis
7
8 @item My signature is not validated by other implementations. What is wrong?
9
10 Try to reverse it (like @code{sign[::-1]} in Python).
11 Try to swap its halves (@code{sign[len(sign)/2:] + sign[:len(sign)/2]}).
12 Try to reverse its swapped halves too.
13
14 @value{ItIsGOSTBaby}!
15
16 @item My signature is @strong{still} not validated by other implementations!
17
18 Try to reverse digest you are signing/verifying (like @code{dgst[::-1]} in Python).
19
20 @value{ItIsGOSTBaby}!
21
22 @item Everything above did not help me. Does GoGOST sucks?
23
24 No way! You still have not tried to reverse your binary private key,
25 public key and swap its halves.
26
27 @value{ItIsGOSTBaby}!
28
29 @end table