Skip to content

Commit

Permalink
[XrdHttp] Added cksum documentation to be put in the official XRootD …
Browse files Browse the repository at this point in the history
…documentation
  • Loading branch information
ccaffy committed Mar 20, 2023
1 parent a18d942 commit 21d2efe
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions src/XrdHttp/README-CKSUM.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
In the case XrdHttp has been configured, it is important that at least one digest algorithm is supported by HTTP. Otherwise, the server will not start.
The digest algorithms that are supported by HTTP are presented below:

| Digest algorithm | HTTP digest | Will be base64 encoded |
|------------------|-------------|------------------------|
| md5 | md5 | true |
| adler32 | adler32 | false |
| sha1 | sha | true |
| sha256 | sha-256 | true |
| sha512 | sha-512 | true |
| cksum | UNIXcksum | false |
| crc32 | crc32 | false |
| crc32c | crc32c | true |

Pay attention to configure the digest names according to the "Digest algorithm" column.

0 comments on commit 21d2efe

Please sign in to comment.