1 | /* |
2 | Copyright (C) 1999-2007 The Botan Project. All rights reserved. |
3 | |
4 | Redistribution and use in source and binary forms, for any use, with or without |
5 | modification, is permitted provided that the following conditions are met: |
6 | |
7 | 1. Redistributions of source code must retain the above copyright notice, this |
8 | list of conditions, and the following disclaimer. |
9 | |
10 | 2. Redistributions in binary form must reproduce the above copyright notice, |
11 | this list of conditions, and the following disclaimer in the documentation |
12 | and/or other materials provided with the distribution. |
13 | |
14 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR(S) "AS IS" AND ANY EXPRESS OR IMPLIED |
15 | WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF |
16 | MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE, ARE DISCLAIMED. |
17 | |
18 | IN NO EVENT SHALL THE AUTHOR(S) OR CONTRIBUTOR(S) BE LIABLE FOR ANY DIRECT, |
19 | INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, |
20 | BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
21 | DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF |
22 | LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE |
23 | OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF |
24 | ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
25 | */ |
26 | // LICENSEHEADER_END |
27 | namespace QCA { // WRAPNS_LINE |
28 | /************************************************* |
29 | * BigInt Input/Output Source File * |
30 | * (C) 1999-2007 The Botan Project * |
31 | *************************************************/ |
32 | |
33 | } // WRAPNS_LINE |
34 | #include <botan/bigint.h> |
35 | namespace QCA { // WRAPNS_LINE |
36 | } // WRAPNS_LINE |
37 | #include <iostream> |
38 | namespace QCA { // WRAPNS_LINE |
39 | |
40 | namespace Botan { |
41 | |
42 | #ifndef BOTAN_MINIMAL_BIGINT |
43 | |
44 | /************************************************* |
45 | * Write the BigInt into a stream * |
46 | *************************************************/ |
47 | std::ostream &operator<<(std::ostream &stream, const BigInt &n) |
48 | { |
49 | BigInt::Base base = BigInt::Decimal; |
50 | if (stream.flags() & std::ios::hex) |
51 | base = BigInt::Hexadecimal; |
52 | else if (stream.flags() & std::ios::oct) |
53 | base = BigInt::Octal; |
54 | |
55 | if (n == 0) |
56 | stream.write("0" , 1); |
57 | else { |
58 | if (n < 0) |
59 | stream.write("-" , 1); |
60 | SecureVector<byte> buffer = BigInt::encode(n, base); |
61 | u32bit skip = 0; |
62 | while (skip < buffer.size() && buffer[skip] == '0') |
63 | ++skip; |
64 | stream.write((const char *)buffer.begin() + skip, buffer.size() - skip); |
65 | } |
66 | if (!stream.good()) |
67 | throw Stream_IO_Error("BigInt output operator has failed" ); |
68 | return stream; |
69 | } |
70 | |
71 | /************************************************* |
72 | * Read the BigInt from a stream * |
73 | *************************************************/ |
74 | std::istream &operator>>(std::istream &stream, BigInt &n) |
75 | { |
76 | std::string str; |
77 | std::getline(stream, str); |
78 | if (stream.bad() || (stream.fail() && !stream.eof())) |
79 | throw Stream_IO_Error("BigInt input operator has failed" ); |
80 | n = BigInt(str); |
81 | return stream; |
82 | } |
83 | |
84 | #endif |
85 | |
86 | } |
87 | } // WRAPNS_LINE |
88 | |