aboutsummaryrefslogtreecommitdiffstats
path: root/lib/crypto/doc/src/crypto.xml
diff options
context:
space:
mode:
authorandreaP <[email protected]>2015-01-07 10:13:09 +0100
committerMarcus Arendt <[email protected]>2015-01-09 10:32:40 +0100
commit8ccf6b58c81a7b43b8f98584ed77e2d20dbce0bf (patch)
tree6be4716ef347d84a8d8287cc48733559e798dd89 /lib/crypto/doc/src/crypto.xml
parent395800d7d8bc0370cab4a69a81011da93f96af55 (diff)
downloadotp-8ccf6b58c81a7b43b8f98584ed77e2d20dbce0bf.tar.gz
otp-8ccf6b58c81a7b43b8f98584ed77e2d20dbce0bf.tar.bz2
otp-8ccf6b58c81a7b43b8f98584ed77e2d20dbce0bf.zip
finally fixed docs
Diffstat (limited to 'lib/crypto/doc/src/crypto.xml')
-rw-r--r--lib/crypto/doc/src/crypto.xml8
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/crypto/doc/src/crypto.xml b/lib/crypto/doc/src/crypto.xml
index 092bb84cd9..eff6129622 100644
--- a/lib/crypto/doc/src/crypto.xml
+++ b/lib/crypto/doc/src/crypto.xml
@@ -169,7 +169,7 @@
</section>
<funcs>
- <func>
+ <func>
<name>block_encrypt(Type, Key, PlainText) -> CipherText</name>
<fsummary>Encrypt <c>PlainText</c>according to <c>Type</c> block cipher</fsummary>
<type>
@@ -178,7 +178,7 @@
<v>PlainText = iodata() </v>
</type>
<desc>
- <p>Encrypt <c>PlainText</c>according to <c>Type</c> block cipher.
+ <p>Encrypt <c>PlainText</c>according to <c>Type</c> block cipher.</p>
<p>May throw exception <c>notsup</c> in case the chosen <c>Type</c>
is not supported by the underlying OpenSSL implementation.</p>
</desc>
@@ -193,13 +193,13 @@
<v>PlainText = iodata() </v>
</type>
<desc>
- <p>Decrypt <c>CipherText</c>according to <c>Type</c> block cipher.
+ <p>Decrypt <c>CipherText</c>according to <c>Type</c> block cipher.</p>
<p>May throw exception <c>notsup</c> in case the chosen <c>Type</c>
is not supported by the underlying OpenSSL implementation.</p>
</desc>
</func>
- <func>
+ <func>
<name>block_encrypt(Type, Key, Ivec, PlainText) -> CipherText</name>
<name>block_encrypt(AeadType, Key, Ivec, {AAD, PlainText}) -> {CipherText, CipherTag}</name>
<fsummary>Encrypt <c>PlainText</c> according to <c>Type</c> block cipher</fsummary>