(Object request, Object algorithm, Object digest)
| 201 | |
| 202 | // hash/hmac/rsa/ecdsa/jwt/crc32 |
| 203 | public static Object hash(Object request, Object algorithm, Object digest) { |
| 204 | return Crypto.hash(request, algorithm, digest); |
| 205 | } |
| 206 | |
| 207 | public static Object hash(Object request) { |
| 208 | return Crypto.hash(request, null, null); |