summaryrefslogtreecommitdiff
path: root/integer.h
diff options
context:
space:
mode:
authorJeffrey Walton <noloader@gmail.com>2018-03-27 19:18:44 -0400
committerJeffrey Walton <noloader@gmail.com>2018-03-27 19:18:44 -0400
commit506f90bcc804ceadd596766be64d695ec898cc66 (patch)
tree0251e0c4b78d552e45a6524119b5e570b3ebe963 /integer.h
parent71ea29d893ff1223cf2061142152a7b868545d7b (diff)
downloadcryptopp-git-506f90bcc804ceadd596766be64d695ec898cc66.tar.gz
Fix VS2010 and "error C2065: uint32_t: undeclared identifier" (GH #608)
We could fix aria.cpp by using word32. However, NaCl gear uses int64_t and we don't have a typedef setup for it. So we will need <cstdint> later for NaCl
Diffstat (limited to 'integer.h')
-rw-r--r--integer.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/integer.h b/integer.h
index 8a8a0082..6aea077a 100644
--- a/integer.h
+++ b/integer.h
@@ -660,6 +660,7 @@ public:
/// modulo the Integer <tt>n</tt>. If no Integer exists then Integer 0 is returned.
/// \sa a_times_b_mod_c() and a_exp_b_mod_c()
Integer InverseMod(const Integer &n) const;
+
/// \brief Calculate multiplicative inverse
/// \param n the modulus
/// \returns a word <tt>*this % n</tt>.