(DNSInput in, int len)
| 336 | } |
| 337 | |
| 338 | private static BigInteger |
| 339 | readBigInteger(DNSInput in, int len) throws IOException { |
| 340 | byte [] b = in.readByteArray(len); |
| 341 | return new BigInteger(1, b); |
| 342 | } |
| 343 | |
| 344 | private static BigInteger |
| 345 | readBigInteger(DNSInput in) { |
no test coverage detected