diff options
author | Jacek Antonelli | 2008-09-06 18:24:57 -0500 |
---|---|---|
committer | Jacek Antonelli | 2008-09-06 18:25:07 -0500 |
commit | 798d367d54a6c6379ad355bd8345fa40e31e7fe9 (patch) | |
tree | 1921f1708cd0240648c97bc02df2c2ab5f2fc41e /linden/indra/llcommon/llmd5.h | |
parent | Second Life viewer sources 1.20.15 (diff) | |
download | meta-impy-798d367d54a6c6379ad355bd8345fa40e31e7fe9.zip meta-impy-798d367d54a6c6379ad355bd8345fa40e31e7fe9.tar.gz meta-impy-798d367d54a6c6379ad355bd8345fa40e31e7fe9.tar.bz2 meta-impy-798d367d54a6c6379ad355bd8345fa40e31e7fe9.tar.xz |
Second Life viewer sources 1.21.0-RC
Diffstat (limited to '')
-rw-r--r-- | linden/indra/llcommon/llmd5.h (renamed from linden/indra/llmath/llmd5.h) | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/linden/indra/llmath/llmd5.h b/linden/indra/llcommon/llmd5.h index 9ba0a9f..6d21b31 100644 --- a/linden/indra/llmath/llmd5.h +++ b/linden/indra/llcommon/llmd5.h | |||
@@ -93,14 +93,14 @@ public: | |||
93 | LLMD5 (); // simple initializer | 93 | LLMD5 (); // simple initializer |
94 | void update (const uint1 *input, const uint4 input_length); | 94 | void update (const uint1 *input, const uint4 input_length); |
95 | void update (std::istream& stream); | 95 | void update (std::istream& stream); |
96 | void update (LLFILE *file); | 96 | void update (FILE *file); |
97 | void finalize (); | 97 | void finalize (); |
98 | 98 | ||
99 | // constructors for special circumstances. All these constructors finalize | 99 | // constructors for special circumstances. All these constructors finalize |
100 | // the MD5 context. | 100 | // the MD5 context. |
101 | LLMD5 (const unsigned char *string); // digest string, finalize | 101 | LLMD5 (const unsigned char *string); // digest string, finalize |
102 | LLMD5 (std::istream& stream); // digest stream, finalize | 102 | LLMD5 (std::istream& stream); // digest stream, finalize |
103 | LLMD5 (LLFILE *file); // digest file, close, finalize | 103 | LLMD5 (FILE *file); // digest file, close, finalize |
104 | LLMD5 (const unsigned char *string, const unsigned int number); | 104 | LLMD5 (const unsigned char *string, const unsigned int number); |
105 | 105 | ||
106 | // methods to acquire finalized result | 106 | // methods to acquire finalized result |