faq.texi | 29 +++++++++++++++++++++++++++++ makedist.sh | 9 +++++++++ www.texi | 1 + diff --git a/faq.texi b/faq.texi new file mode 100644 index 0000000000000000000000000000000000000000..2c6c114a9fa1c5e8837600a031b8004261115164c5235db3b0487df91d5312bf --- /dev/null +++ b/faq.texi @@ -0,0 +1,29 @@ +@node FAQ +@unnumbered Frequently asked questions + +@set ItIsGOSTBaby It is GOST: do you expect serialization unification? + +@table @asis + +@item My signature is not validated by other implementations. What is wrong? + +Try to reverse it (@code{sign[::-1]}). +Try to swap its halves (@code{sign[len(sign)/2:] + sign[:len(sign)/2]}). +Try to reverse its swapped halves too. + +@value{ItIsGOSTBaby}! + +@item My signature is @strong{still} not validated by other implementations! + +Try to reverse digest you are signing/verifying (@code{dgst[::-1]}). + +@value{ItIsGOSTBaby}! + +@item 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. + +@value{ItIsGOSTBaby}! + +@end table diff --git a/makedist.sh b/makedist.sh index 92c977929d46402d5f5bf869f4f020a39a4b84dea6ff6269f33499c13f1fc71d..85f6dd3444e6838e99e9df5852e1d6b487453893adde35a4c7e04bed7f214ee2 100755 --- a/makedist.sh +++ b/makedist.sh @@ -55,6 +55,15 @@ @bye EOF makeinfo --plaintext -o NEWS $texi +cat > $texi <