aboutsummaryrefslogtreecommitdiffstats
path: root/src/kdf/mgf1/mgf1.cpp
diff options
context:
space:
mode:
authorlloyd <[email protected]>2010-09-14 01:31:38 +0000
committerlloyd <[email protected]>2010-09-14 01:31:38 +0000
commit59a9b0ef260b010606edc3384035b6aa12dd6415 (patch)
tree6d643130be0e6eac2d8120da90ad03a3b5cdff4e /src/kdf/mgf1/mgf1.cpp
parentae59295ea945fdcc482df2233409a5f878fa20c7 (diff)
Handle the case that container size() returns something other than u32bit
Diffstat (limited to 'src/kdf/mgf1/mgf1.cpp')
-rw-r--r--src/kdf/mgf1/mgf1.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/kdf/mgf1/mgf1.cpp b/src/kdf/mgf1/mgf1.cpp
index 509a411fa..c79ae44bb 100644
--- a/src/kdf/mgf1/mgf1.cpp
+++ b/src/kdf/mgf1/mgf1.cpp
@@ -29,7 +29,7 @@ void MGF1::mask(const byte in[], u32bit in_len, byte out[],
hash->update(get_byte(j, counter));
SecureVector<byte> buffer = hash->final();
- u32bit xored = std::min(buffer.size(), out_len);
+ u32bit xored = std::min<u32bit>(buffer.size(), out_len);
xor_buf(out, &buffer[0], xored);
out += xored;
out_len -= xored;