| 70 | } |
| 71 | |
| 72 | void processStrippedInt(const Firebird::BigInteger& data) |
| 73 | { |
| 74 | Firebird::UCharBuffer bytes; |
| 75 | data.getBytes(bytes); |
| 76 | if (bytes.getCount()) |
| 77 | { |
| 78 | unsigned int n = (bytes[0] == 0) ? 1u : 0; |
| 79 | SHA::process(bytes.getCount() - n, bytes.begin() + n); |
| 80 | } |
| 81 | } |
| 82 | }; |
| 83 | |
| 84 |
no test coverage detected