summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorJeongHoon Byun <outsideris@gmail.com>2013-03-12 21:21:43 +0900
committerBen Noordhuis <info@bnoordhuis.nl>2013-03-17 13:45:14 +0100
commitf217b5ed62f3f020e8cf346787e9ad5822d81b91 (patch)
treeac8cd874b32218a849a2dc43bdd4a92a7d135403 /doc
parent852444a72072dc7bf62e1e4df49a92d766b01268 (diff)
downloadandroid-node-v8-f217b5ed62f3f020e8cf346787e9ad5822d81b91.tar.gz
android-node-v8-f217b5ed62f3f020e8cf346787e9ad5822d81b91.tar.bz2
android-node-v8-f217b5ed62f3f020e8cf346787e9ad5822d81b91.zip
doc: fix typo in crypto docs
Diffstat (limited to 'doc')
-rw-r--r--doc/api/crypto.markdown14
1 files changed, 7 insertions, 7 deletions
diff --git a/doc/api/crypto.markdown b/doc/api/crypto.markdown
index dfbedca229..7cc4bdd920 100644
--- a/doc/api/crypto.markdown
+++ b/doc/api/crypto.markdown
@@ -110,7 +110,7 @@ Calculates the digest of all of the passed data to be hashed. The
`encoding` can be `'hex'`, `'binary'` or `'base64'`. If no encoding
is provided, then a buffer is returned.
-Note: `hash` object can not be used after `digest()` method been
+Note: `hash` object can not be used after `digest()` method has been
called.
@@ -144,7 +144,7 @@ Calculates the digest of all of the passed data to the hmac. The
`encoding` can be `'hex'`, `'binary'` or `'base64'`. If no encoding
is provided, then a buffer is returned.
-Note: `hmac` object can not be used after `digest()` method been
+Note: `hmac` object can not be used after `digest()` method has been
called.
@@ -194,7 +194,7 @@ encoding is provided, then a buffer is expected.
The `output_encoding` specifies the output format of the enciphered
data, and can be `'binary'`, `'base64'` or `'hex'`. If no encoding is
-provided, then a buffer iis returned.
+provided, then a buffer is returned.
Returns the enciphered contents, and can be called many times with new
data as it is streamed.
@@ -205,7 +205,7 @@ Returns any remaining enciphered contents, with `output_encoding`
being one of: `'binary'`, `'base64'` or `'hex'`. If no encoding is
provided, then a buffer is returned.
-Note: `cipher` object can not be used after `final()` method been
+Note: `cipher` object can not be used after `final()` method has been
called.
### cipher.setAutoPadding(auto_padding=true)
@@ -254,7 +254,7 @@ Returns any remaining plaintext which is deciphered, with
`output_encoding` being one of: `'binary'`, `'ascii'` or `'utf8'`. If
no encoding is provided, then a buffer is returned.
-Note: `decipher` object can not be used after `final()` method been
+Note: `decipher` object can not be used after `final()` method has been
called.
### decipher.setAutoPadding(auto_padding=true)
@@ -297,7 +297,7 @@ Returns the signature in `output_format` which can be `'binary'`,
`'hex'` or `'base64'`. If no encoding is provided, then a buffer is
returned.
-Note: `sign` object can not be used after `sign()` method been
+Note: `sign` object can not be used after `sign()` method has been
called.
## crypto.createVerify(algorithm)
@@ -334,7 +334,7 @@ If no encoding is specified, then a buffer is expected.
Returns true or false depending on the validity of the signature for
the data and public key.
-Note: `verifier` object can not be used after `verify()` method been
+Note: `verifier` object can not be used after `verify()` method has been
called.
## crypto.createDiffieHellman(prime_length)