(PrivateKey privateKey, byte[] data)
| 273 | |
| 274 | // 使用RSA私钥解密小块数据(不处理padding的原始数据) |
| 275 | public static byte[] decryptRsaNoPadding(PrivateKey privateKey, byte[] data) throws GeneralSecurityException { |
| 276 | return decryptRsaNoPadding(privateKey, data, 0, data.length); |
| 277 | } |
| 278 | |
| 279 | // 使用RSA私钥解密小块数据(不处理padding的原始数据) |
| 280 | public static byte[] decryptRsaNoPadding(PrivateKey privateKey, byte[] data, int offset, int size) |
nothing calls this directly
no test coverage detected