(DNSOutput out, BigInteger val)
| 376 | } |
| 377 | |
| 378 | private static void |
| 379 | writeBigInteger(DNSOutput out, BigInteger val) { |
| 380 | byte [] b = trimByteArray(val.toByteArray()); |
| 381 | out.writeByteArray(b); |
| 382 | } |
| 383 | |
| 384 | private static void |
| 385 | writePaddedBigInteger(DNSOutput out, BigInteger val, int len) { |
no test coverage detected