Browse Source

Fix some latex formatting errors

[skip ci]
Steffen Jaeckel 7 years ago
parent
commit
da7054820c
1 changed files with 2 additions and 2 deletions
  1. 2 2
      doc/crypt.tex

+ 2 - 2
doc/crypt.tex

@@ -1412,7 +1412,7 @@ rabbit_state st;
 err = rabbit_setup(&st, key, keylen);
 err = rabbit_setup(&st, key, keylen);
 \end{verbatim}
 \end{verbatim}
 
 
-Set the IV using \textit{rabbit\_setiv() with a 64-bit IV.
+Set the IV using \textit{rabbit\_setiv()} with a 64-bit IV.
 \begin{verbatim}
 \begin{verbatim}
 err = rabbit_setiv(&st, iv, iv_len);
 err = rabbit_setiv(&st, iv, iv_len);
 \end{verbatim}
 \end{verbatim}
@@ -1438,7 +1438,7 @@ Technically, it is possible to initialize Rabbit with only a call to \textit{rab
 skipping the call to \textit{rabbit\_setiv()}.  This is not recommended for interoperability reasons,
 skipping the call to \textit{rabbit\_setiv()}.  This is not recommended for interoperability reasons,
 but there may be special cases like closed systems or custom protocols where doing so might be
 but there may be special cases like closed systems or custom protocols where doing so might be
 appropriate.  Please note that skipping \textit{rabbit\_setiv()} will give results different than
 appropriate.  Please note that skipping \textit{rabbit\_setiv()} will give results different than
-calling \textit{rabbit\_setiv()} passing a zero-valued IV.  You should call rabbit_setiv() unless
+calling \textit{rabbit\_setiv()} passing a zero-valued IV.  You should call \textit{rabbit\_setiv()} unless
 you have a special reason for not doing so.
 you have a special reason for not doing so.
 
 
 To do multiple encryptions and decryptions with the same key, you can reset the algorithm
 To do multiple encryptions and decryptions with the same key, you can reset the algorithm