mirror of
https://github.com/dlang/phobos.git
synced 2025-04-29 14:40:30 +03:00
Add missing references to std.digest.hmac to fix doc generation
This commit is contained in:
parent
c21575cd67
commit
bdb35215d7
4 changed files with 4 additions and 0 deletions
1
index.d
1
index.d
|
@ -89,6 +89,7 @@ $(BOOKTABLE ,
|
|||
$(TD
|
||||
Cyclic Redundancy Check (32-bit) implementation$(BR)
|
||||
Compute digests such as md5, sha1 and crc32$(BR)
|
||||
Compute HMAC of arbitrary data using a user-specified hash algorithm$(BR)
|
||||
Compute MD5 hash of arbitrary data$(BR)
|
||||
Compute RIPEMD-160 hash of arbitrary data$(BR)
|
||||
Compute SHA1 and SHA2 hashes of arbitrary data
|
||||
|
|
|
@ -59,6 +59,7 @@ public import std.digest.digest;
|
|||
public import std.digest.crc;
|
||||
public import std.digest.sha;
|
||||
public import std.digest.md;
|
||||
public import std.digest.hmac;
|
||||
|
||||
int main(string[] args)
|
||||
{
|
||||
|
|
|
@ -328,6 +328,7 @@ DOCS= $(DOC)\object.html \
|
|||
$(DOC)\std_digest_sha.html \
|
||||
$(DOC)\std_digest_md.html \
|
||||
$(DOC)\std_digest_ripemd.html \
|
||||
$(DOC)\std_digest_hmac.html \
|
||||
$(DOC)\std_digest_digest.html \
|
||||
$(DOC)\std_cstream.html \
|
||||
$(DOC)\std_csv.html \
|
||||
|
|
|
@ -349,6 +349,7 @@ DOCS= $(DOC)\object.html \
|
|||
$(DOC)\std_digest_sha.html \
|
||||
$(DOC)\std_digest_md.html \
|
||||
$(DOC)\std_digest_ripemd.html \
|
||||
$(DOC)\std_digest_hmac.html \
|
||||
$(DOC)\std_digest_digest.html \
|
||||
$(DOC)\std_cstream.html \
|
||||
$(DOC)\std_csv.html \
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue