(Object data, Object secret, Object hash, boolean isRsa, Object options2)
| 582 | } |
| 583 | |
| 584 | public String jwt(Object data, Object secret, Object hash, boolean isRsa, Object options2) { |
| 585 | return Crypto.Jwt(data, secret, hash, isRsa, (Map<String, Object>)options2); |
| 586 | } |
| 587 | |
| 588 | public String jwt(Object data, Object secret, Object hash) { |
| 589 | return Crypto.Jwt(data, secret, hash, false, new HashMap<String, Object> ()); |
no test coverage detected