You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

27 rivejä
655 B

  1. package consts
  2. type AuthType string
  3. const (
  4. AK AuthType = "AK"
  5. Token = "TOKEN"
  6. NoAuth = "NO_AUTH"
  7. )
  8. const (
  9. AccessKey = "AccessKey"
  10. Timetamp = "Timestamp"
  11. TimestampFormat = "2006-01-02T15:04:05Z"
  12. Signature = "Signature"
  13. SecretKeyPrefix = "BC_SIGNATURE&"
  14. SignatureMethod = "SignatureMethod"
  15. SignatureMethodValue = "HmacSHA256"
  16. SignatureVersion = "SignatureVersion"
  17. SignatureVersionValue = "V2.0"
  18. SignatureNonce = "SignatureNonce"
  19. LineSeparator = "\n"
  20. ParameterSeparator = "&"
  21. QueryStartSymbol = "?"
  22. QuerySeparator = "="
  23. )