vars.go 391 B

12345678910111213141516171819
  1. package httpx
  2. const (
  3. ApplicationJson = "application/json"
  4. ContentEncoding = "Content-Encoding"
  5. ContentSecurity = "X-Content-Security"
  6. ContentType = "Content-Type"
  7. KeyField = "key"
  8. SecretField = "secret"
  9. TypeField = "type"
  10. CryptionType = 1
  11. )
  12. const (
  13. CodeSignaturePass = iota
  14. CodeSignatureInvalidHeader
  15. CodeSignatureWrongTime
  16. CodeSignatureInvalidToken
  17. )