faq.texi | 4 ++-- diff --git a/faq.texi b/faq.texi index 2c6c114a9fa1c5e8837600a031b8004261115164c5235db3b0487df91d5312bf..a6c2f6a422d0ab0a4fe9b1f70734cde787f8b10527c64027dc7947d3a54985a6 100644 --- a/faq.texi +++ b/faq.texi @@ -7,7 +7,7 @@ @table @asis @item My signature is not validated by other implementations. What is wrong? -Try to reverse it (@code{sign[::-1]}). +Try to reverse it (like @code{sign[::-1]} in Python). Try to swap its halves (@code{sign[len(sign)/2:] + sign[:len(sign)/2]}). Try to reverse its swapped halves too. @@ -15,7 +15,7 @@ @value{ItIsGOSTBaby}! @item My signature is @strong{still} not validated by other implementations! -Try to reverse digest you are signing/verifying (@code{dgst[::-1]}). +Try to reverse digest you are signing/verifying (like @code{dgst[::-1]} in Python). @value{ItIsGOSTBaby}!