diff options
author | andreaP <[email protected]> | 2015-01-08 18:04:57 +0100 |
---|---|---|
committer | Marcus Arendt <[email protected]> | 2015-01-09 10:39:28 +0100 |
commit | 6dbb25ea9c95b5101975e8ce60db65c219449266 (patch) | |
tree | 38766f149ef67b382c219053e8dbe9cdb2e58f26 /lib/crypto/doc | |
parent | 8ccf6b58c81a7b43b8f98584ed77e2d20dbce0bf (diff) | |
download | otp-6dbb25ea9c95b5101975e8ce60db65c219449266.tar.gz otp-6dbb25ea9c95b5101975e8ce60db65c219449266.tar.bz2 otp-6dbb25ea9c95b5101975e8ce60db65c219449266.zip |
aligned implementation following last specs
Diffstat (limited to 'lib/crypto/doc')
-rw-r--r-- | lib/crypto/doc/src/crypto.xml | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/lib/crypto/doc/src/crypto.xml b/lib/crypto/doc/src/crypto.xml index eff6129622..34de65217b 100644 --- a/lib/crypto/doc/src/crypto.xml +++ b/lib/crypto/doc/src/crypto.xml @@ -171,14 +171,14 @@ <funcs> <func> <name>block_encrypt(Type, Key, PlainText) -> CipherText</name> - <fsummary>Encrypt <c>PlainText</c>according to <c>Type</c> block cipher</fsummary> + <fsummary>Encrypt <c>PlainText</c> according to <c>Type</c> block cipher</fsummary> <type> <v>Type = des_ecb | blowfish_ecb | aes_ecb </v> <v>Key = block_key() </v> <v>PlainText = iodata() </v> </type> <desc> - <p>Encrypt <c>PlainText</c>according to <c>Type</c> block cipher.</p> + <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> @@ -186,14 +186,14 @@ <func> <name>block_decrypt(Type, Key, CipherText) -> PlainText</name> - <fsummary>Decrypt <c>CipherText</c>according to <c>Type</c> block cipher</fsummary> + <fsummary>Decrypt <c>CipherText</c> according to <c>Type</c> block cipher</fsummary> <type> <v>Type = des_ecb | blowfish_ecb | aes_ecb </v> <v>Key = block_key() </v> <v>PlainText = iodata() </v> </type> <desc> - <p>Decrypt <c>CipherText</c>according to <c>Type</c> block cipher.</p> + <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> @@ -211,7 +211,7 @@ <v>AAD = IVec = CipherText = CipherTag = binary()</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. <c>IVec</c> is an arbitrary initializing vector.</p> <p>In AEAD (Authenticated Encryption with Associated Data) mode, encrypt <c>PlainText</c>according to <c>Type</c> block cipher and calculate @@ -233,7 +233,7 @@ <v>AAD = IVec = CipherText = CipherTag = binary()</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. <c>IVec</c> is an arbitrary initializing vector.</p> <p>In AEAD (Authenticated Encryption with Associated Data) mode, decrypt <c>CipherText</c>according to <c>Type</c> block cipher and check the authenticity |