diff options
author | irfan <irfan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1998-05-18 21:54:25 +0000 |
---|---|---|
committer | irfan <irfan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1998-05-18 21:54:25 +0000 |
commit | eb91ee2d4a8115858376ed2d5aaad65b045743d4 (patch) | |
tree | 5490ae8b79b7a44077e026502b0efc39a999bcca /ace/ACE.h | |
parent | b67e22b92f71397caf1c0e0bb11673700c011bf5 (diff) | |
download | ATCD-eb91ee2d4a8115858376ed2d5aaad65b045743d4.tar.gz |
*** empty log message ***
Diffstat (limited to 'ace/ACE.h')
-rw-r--r-- | ace/ACE.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/ace/ACE.h b/ace/ACE.h index f1ec2cca833..de334da7b91 100644 --- a/ace/ACE.h +++ b/ace/ACE.h @@ -506,10 +506,17 @@ public: static u_long hash_pjw (const char *str); // Computes the hash value of <str> using the ``Hash PJW'' routine. + static u_long hash_pjw (const char *str, size_t len); + // Computes the hash value of <str> using the ``Hash PJW'' routine. + static u_long hash_pjw (const ACE_USHORT16 *str); // Computes the hash value of <str> using the ``Hash PJW'' routine // (works for UNICODE strings). + static u_long hash_pjw (const ACE_USHORT16 *str, size_t len); + // Computes the hash value of <str> using the ``Hash PJW'' routine + // (works for UNICODE strings). + static u_long crc32 (const char* str); // Computes the ISO 8802-3 standard 32 bits CRC for the string // (not for a file). |