(Object payload, Object secret)
| 554 | public String p256() {return "p256"; } |
| 555 | |
| 556 | public Object hmac(Object payload, Object secret) { |
| 557 | return Crypto.Hmac(payload, secret, null, null); |
| 558 | } |
| 559 | |
| 560 | public Object hmac(Object payload, Object secret, Object algo) { |
| 561 | return Crypto.Hmac(payload, secret, algo, null); |