判断是否在范围内 @param param @param min @param max @return
(BigInteger param, BigInteger min, BigInteger max)
| 337 | * @return |
| 338 | */ |
| 339 | private boolean between(BigInteger param, BigInteger min, BigInteger max) { |
| 340 | if (param.compareTo(min) >= 0 && param.compareTo(max) < 0) { |
| 341 | return true; |
| 342 | } else { |
| 343 | return false; |
| 344 | } |
| 345 | } |
| 346 | |
| 347 | /** |
| 348 | * 判断生成的公钥是否合法 |
no outgoing calls
no test coverage detected