aboutsummaryrefslogtreecommitdiffstats
path: root/src/math/bigint/bigint.h
diff options
context:
space:
mode:
authorlloyd <[email protected]>2008-10-28 17:15:36 +0000
committerlloyd <[email protected]>2008-10-28 17:15:36 +0000
commit73161c7a43c90f31d16c32ab18cc8d6873c094c0 (patch)
treea1f6f2d71b3b95b8b588b2bc62134daa7e63aa00 /src/math/bigint/bigint.h
parent5f35fe7bd6f1a94585447763150d0b4fe772e1bd (diff)
Wrap lines to 80 columns
Diffstat (limited to 'src/math/bigint/bigint.h')
-rw-r--r--src/math/bigint/bigint.h9
1 files changed, 5 insertions, 4 deletions
diff --git a/src/math/bigint/bigint.h b/src/math/bigint/bigint.h
index ec3c1cbe3..087f0e25a 100644
--- a/src/math/bigint/bigint.h
+++ b/src/math/bigint/bigint.h
@@ -215,7 +215,8 @@ class BOTAN_DLL BigInt
* Return (a maximum of) 32 bits of the complete value
* @param offset the offset to start extracting
* @param length amount of bits to extract (starting at offset)
- * @result the integer extracted from the register starting at offset with specified length
+ * @result the integer extracted from the register starting at
+ * offset with specified length
*/
u32bit get_substring(u32bit offset, u32bit length) const;
@@ -230,9 +231,9 @@ class BOTAN_DLL BigInt
{ return ((n < size()) ? reg[n] : 0); }
/**
- * Return the integer as an unsigned 32bit-integer-value.
- * If the value is negative OR to big to be stored in 32bits, this function
- * will throw an exception.
+ * Return the integer as an unsigned 32bit-integer-value. If the
+ * value is negative OR to big to be stored in 32bits, this
+ * function will throw an exception.
* @result a 32bit-integer
*/
u32bit to_u32bit() const;