diff options
author | Bernard Duggan <[email protected]> | 2011-04-01 08:45:25 +1100 |
---|---|---|
committer | Henrik Nord <[email protected]> | 2011-04-01 14:49:51 +0200 |
commit | 6597f81ec28909d1b3670e1c701f1175394c3fc2 (patch) | |
tree | b530f16afeef46c8b340b57a5e6dfad8b9875f48 /lib/crypto | |
parent | 30f3f25d7c358ee65444621335692162de24a94f (diff) | |
download | otp-6597f81ec28909d1b3670e1c701f1175394c3fc2.tar.gz otp-6597f81ec28909d1b3670e1c701f1175394c3fc2.tar.bz2 otp-6597f81ec28909d1b3670e1c701f1175394c3fc2.zip |
Fix mistake in blowfish_ebc_en/decrypt docs
Diffstat (limited to 'lib/crypto')
-rw-r--r-- | lib/crypto/doc/src/crypto.xml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/crypto/doc/src/crypto.xml b/lib/crypto/doc/src/crypto.xml index 91b89c8796..dfafe67348 100644 --- a/lib/crypto/doc/src/crypto.xml +++ b/lib/crypto/doc/src/crypto.xml @@ -415,22 +415,22 @@ Mpint() = <![CDATA[<<ByteLen:32/integer-big, Bytes:ByteLen/binary>>]]> </func> <func> - <name>blowfish_ecb_encrypt(Key, IVec, Text) -> Cipher</name> + <name>blowfish_ecb_encrypt(Key, Text) -> Cipher</name> <fsummary>Encrypt the first 64 bits of <c>Text</c> using Blowfish in ECB mode</fsummary> <type> <v>Key = Text = iolist() | binary()</v> - <v>IVec = Cipher = binary()</v> + <v>Cipher = binary()</v> </type> <desc> <p>Encrypts the first 64 bits of <c>Text</c> using Blowfish in ECB mode. <c>Key</c> is the Blowfish key. The length of <c>Text</c> must be at least 64 bits (8 bytes).</p> </desc> </func> <func> - <name>blowfish_ecb_decrypt(Key, IVec, Text) -> Cipher</name> + <name>blowfish_ecb_decrypt(Key, Text) -> Cipher</name> <fsummary>Decrypt the first 64 bits of <c>Text</c> using Blowfish in ECB mode</fsummary> <type> <v>Key = Text = iolist() | binary()</v> - <v>IVec = Cipher = binary()</v> + <v>Cipher = binary()</v> </type> <desc> <p>Decrypts the first 64 bits of <c>Text</c> using Blowfish in ECB mode. <c>Key</c> is the Blowfish key. The length of <c>Text</c> must be at least 64 bits (8 bytes).</p> |