diff options
author | Fredrik Gustafsson <[email protected]> | 2013-01-09 14:52:24 +0100 |
---|---|---|
committer | Fredrik Gustafsson <[email protected]> | 2013-01-09 14:52:24 +0100 |
commit | 9229901660ef1c163ea82c76ea3dc21f5a4f83d4 (patch) | |
tree | 92f79c3740223fcfc1d7f5443ff49163843aad53 /lib/crypto/doc/src/crypto.xml | |
parent | 5cd05af9b0ed994cf44bbd8ad7c5ee3119f952ff (diff) | |
parent | 1ba013ffcc5efd75869088161f33a09305653fb9 (diff) | |
download | otp-9229901660ef1c163ea82c76ea3dc21f5a4f83d4.tar.gz otp-9229901660ef1c163ea82c76ea3dc21f5a4f83d4.tar.bz2 otp-9229901660ef1c163ea82c76ea3dc21f5a4f83d4.zip |
Merge branch 'ml/crypto/add-ripemd160-digest/OTP-10667'
* ml/crypto/add-ripemd160-digest/OTP-10667:
fix crypto ripemd160 tests to use hash_init family
fix ripemd160 to use hash_init family and add documentation
fix missing defines for RIPEMD160_CTX_LEN and RIPEMD160_LEN
add ripemd160 support to crypto
Diffstat (limited to 'lib/crypto/doc/src/crypto.xml')
-rwxr-xr-x[-rw-r--r--] | lib/crypto/doc/src/crypto.xml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/crypto/doc/src/crypto.xml b/lib/crypto/doc/src/crypto.xml index 3e533158c8..61e80d7d5f 100644..100755 --- a/lib/crypto/doc/src/crypto.xml +++ b/lib/crypto/doc/src/crypto.xml @@ -265,7 +265,7 @@ Mpint() = <![CDATA[<<ByteLen:32/integer-big, Bytes:ByteLen/binary>>]]> <name>hash(Type, Data) -> Digest</name> <fsummary></fsummary> <type> - <v>Type = md4 | md5 | sha | sha224 | sha256 | sha384 | sha512</v> + <v>Type = md4 | md5 | ripemd160 | sha | sha224 | sha256 | sha384 | sha512</v> <v>Data = iodata()</v> <v>Digest = binary()</v> </type> @@ -279,7 +279,7 @@ Mpint() = <![CDATA[<<ByteLen:32/integer-big, Bytes:ByteLen/binary>>]]> <name>hash_init(Type) -> Context</name> <fsummary></fsummary> <type> - <v>Type = md4 | md5 | sha | sha224 | sha256 | sha384 | sha512</v> + <v>Type = md4 | md5 | ripemd160 | sha | sha224 | sha256 | sha384 | sha512</v> </type> <desc> <p>Initializes the context for streaming hash operations. <c>Type</c> determines |