zyy
2025-11-11 df42e224ff59c45d88ad15913d27d2b66a33e6c4
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
package com.yami.trading.huobi.websocket.constant;
/*
*下面是Hmac256签名方式的变量,SIGN是“256”代表Hmac256签名方式,“25519”代表Ed25519签名方式。
* API_KEY和SECRET_KEY是Hmac256方式需要的公钥和私钥。PUBLIC_KEY和PRIVATE_KEY是Ed25519的公钥和私钥。
*
* The following is the variable of the Hmac256 signature mode.
* SIGN indicates the Hmac256 signature mode and 25519 indicates the Ed25519 signature mode.
* API_KEY and SECRET_KEY are the public and private keys required for Hmac256 mode.
* PUBLIC_KEY and PRIVATE_KEY are the public and private keys of Ed25519.
* */
public class Constants {
 
  public static final String API_KEY = "";
  public static final String SECRET_KEY = "";
public static final String SIGN = "256";
 
 
public static final String PUBLIC_KEY = "";
  public static final String PRIVATE_KEY = "";
 
 
 
 
 
}