(
Object request,
Object secret,
Object algorithm,
String digest
)
| 213 | } |
| 214 | |
| 215 | public static String hmac( |
| 216 | Object request, |
| 217 | Object secret, |
| 218 | Object algorithm, |
| 219 | String digest |
| 220 | ) { |
| 221 | return Crypto.hmac(request, secret, algorithm, digest); |
| 222 | } |
| 223 | |
| 224 | public static String hmac(Object request, Object secret) { |
| 225 | return Crypto.hmac(request, secret, null, "hex"); |