summaryrefslogtreecommitdiff
path: root/Doc
diff options
context:
space:
mode:
authorakuchling <akuchling@rivest.dlitz.net>2003-04-03 21:36:15 -0700
committerakuchling <akuchling@rivest.dlitz.net>2003-04-03 21:36:15 -0700
commit5c1a5d079268201b65cd67b2fa7fb0b0af2fd2a1 (patch)
tree6072feaaf79b254a27418dc6e15c980a71cbc5fd /Doc
parenta59d32d476b67fdd840f485289247f20f656a9da (diff)
downloadpycrypto-5c1a5d079268201b65cd67b2fa7fb0b0af2fd2a1.tar.gz
[project @ akuchling-20030404043615-1825725f0edaa6ca]
[project @ 2003-04-03 20:36:06 by akuchling] Rename can* and has* to can_* and has_*
Diffstat (limited to 'Doc')
-rw-r--r--Doc/pycrypt.tex10
1 files changed, 5 insertions, 5 deletions
diff --git a/Doc/pycrypt.tex b/Doc/pycrypt.tex
index 4276539..658112c 100644
--- a/Doc/pycrypt.tex
+++ b/Doc/pycrypt.tex
@@ -702,16 +702,16 @@ Returns true if the algorithm is capable of blinding data;
returns false otherwise.
\end{methoddesc}
-\begin{methoddesc}{canencrypt}{}
+\begin{methoddesc}{can_encrypt}{}
Returns true if the algorithm is capable of encrypting and decrypting
data; returns false otherwise. To test if a given key object can sign
-data, use \code{key.canencrypt() and key.hasprivate()}.
+data, use \code{key.can_encrypt() and key.has_private()}.
\end{methoddesc}
-\begin{methoddesc}{cansign}{}
+\begin{methoddesc}{can_sign}{}
Returns true if the algorithm is capable of signing data; returns false
otherwise. To test if a given key object can sign data, use
-\code{key.cansign() and key.hasprivate()}.
+\code{key.can_sign() and key.has_private()}.
\end{methoddesc}
\begin{methoddesc}{decrypt}{tuple}
@@ -732,7 +732,7 @@ big-endian integer must be relatively prime to \code{self.p-1}; an
exception is raised if it is not.
\end{methoddesc}
-\begin{methoddesc}{hasprivate}{}
+\begin{methoddesc}{has_private}{}
Returns true if the key object contains the private key data, which
will allow decrypting data and generating signatures.
Otherwise this returns false.