diff options
author | Jacek Antonelli | 2008-08-15 23:45:50 -0500 |
---|---|---|
committer | Jacek Antonelli | 2008-08-15 23:45:50 -0500 |
commit | 2a4dea528f670b9bb1f77ef27a8a1dd16603d114 (patch) | |
tree | 95c68e362703c9099d571ecbdc6142b1cda1e005 /linden/indra/llmath/llmd5.h | |
parent | Second Life viewer sources 1.20.6 (diff) | |
download | meta-impy-2a4dea528f670b9bb1f77ef27a8a1dd16603d114.zip meta-impy-2a4dea528f670b9bb1f77ef27a8a1dd16603d114.tar.gz meta-impy-2a4dea528f670b9bb1f77ef27a8a1dd16603d114.tar.bz2 meta-impy-2a4dea528f670b9bb1f77ef27a8a1dd16603d114.tar.xz |
Second Life viewer sources 1.20.7
Diffstat (limited to '')
-rw-r--r-- | linden/indra/llmath/llmd5.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/linden/indra/llmath/llmd5.h b/linden/indra/llmath/llmd5.h index 6d21b31..9ba0a9f 100644 --- a/linden/indra/llmath/llmd5.h +++ b/linden/indra/llmath/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 (FILE *file); | 96 | void update (LLFILE *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 (FILE *file); // digest file, close, finalize | 103 | LLMD5 (LLFILE *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 |