()
| 391 | } |
| 392 | |
| 393 | private byte[] getEPArray(){ |
| 394 | if(ep_array==null){ |
| 395 | ep_array=(new BigInteger(prv_array)).mod(new BigInteger(p_array).subtract(BigInteger.ONE)).toByteArray(); |
| 396 | } |
| 397 | return ep_array; |
| 398 | } |
| 399 | |
| 400 | private byte[] getEQArray(){ |
| 401 | if(eq_array==null){ |
no test coverage detected