aboutsummaryrefslogtreecommitdiffstats
path: root/src/math/bigint/bigint.h
diff options
context:
space:
mode:
authorlloyd <[email protected]>2012-08-01 14:38:54 +0000
committerlloyd <[email protected]>2012-08-01 14:38:54 +0000
commit10e7da367713352975c684d18d1377559c71ea24 (patch)
tree453a37d5e5202f56cc4afaea3149cf47784b1b1b /src/math/bigint/bigint.h
parentcbefe4dd95982006e4d8391aea645e40baa17496 (diff)
Remove all support for octal BigInt conversions.
Diffstat (limited to 'src/math/bigint/bigint.h')
-rw-r--r--src/math/bigint/bigint.h7
1 files changed, 2 insertions, 5 deletions
diff --git a/src/math/bigint/bigint.h b/src/math/bigint/bigint.h
index 81217d0bd..a4918509f 100644
--- a/src/math/bigint/bigint.h
+++ b/src/math/bigint/bigint.h
@@ -25,7 +25,7 @@ class BOTAN_DLL BigInt
/**
* Base enumerator for encoding and decoding
*/
- enum Base { Octal = 8, Decimal = 10, Hexadecimal = 16, Binary = 256 };
+ enum Base { Decimal = 10, Hexadecimal = 16, Binary = 256 };
/**
* Sign symbol definitions for positive and negative numbers
@@ -466,10 +466,7 @@ class BOTAN_DLL BigInt
/**
* Create BigInt from a string. If the string starts with 0x the
* rest of the string will be interpreted as hexadecimal digits.
- * If the string starts with 0 and the second character is NOT an
- * 'x' the string will be interpreted as octal digits. If the
- * string starts with non-zero digit, it will be interpreted as a
- * decimal number.
+ * Otherwise, it will be interpreted as a decimal number.
*
* @param str the string to parse for an integer value
*/