(String data, byte[] secret)
| 303 | public static byte[] SignHMACSHA384(byte[] data, byte[] secret) { return hmac("HmacSHA384", data, secret); } |
| 304 | |
| 305 | public static byte[] SignHMACSHA512(String data, byte[] secret) { return hmac("HmacSHA512", toUtf8(data), secret); } |
| 306 | public static byte[] SignHMACSHA512(byte[] data, byte[] secret) { return hmac("HmacSHA512", data, secret); } |
| 307 | |
| 308 | public static byte[] SignHMACMD5(String data, byte[] secret) { return hmac("HmacMD5", toUtf8(data), secret); } |