MANIFEST.in | 1 + faq.texi | 29 +++++++++++++++++++++++++++++ maketxts.sh | 9 +++++++++ setup.py | 1 + www.texi | 1 + diff --git a/MANIFEST.in b/MANIFEST.in index 577c5417126d806297adc678a1510fa37736813cd564ac16efa09d30a01293d0..e80ba79ce09adeb59bada9496886c8fcdfce38899804ffe2e9c71dd6d33114c4 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -1,5 +1,6 @@ include AUTHORS include COPYING +include FAQ include INSTALL include NEWS include README 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/maketxts.sh b/maketxts.sh index db2cd7fe362b90db5d9e841c2df3417ae293f47d35b0d7e5f0aaca451d848615..db0cb3e5658ca09c71d1b4f2a81002a6b4589dc29fac47a0704c1175c2c24b06 100755 --- a/maketxts.sh +++ b/maketxts.sh @@ -29,6 +29,15 @@ @bye EOF makeinfo --plaintext -o INSTALL $texi +cat > $texi <