mirror of
https://github.com/zeromicro/go-zero.git
synced 2026-05-11 00:40:00 +08:00
20 lines
391 B
Go
20 lines
391 B
Go
|
|
package httpx
|
||
|
|
|
||
|
|
const (
|
||
|
|
ApplicationJson = "application/json"
|
||
|
|
ContentEncoding = "Content-Encoding"
|
||
|
|
ContentSecurity = "X-Content-Security"
|
||
|
|
ContentType = "Content-Type"
|
||
|
|
KeyField = "key"
|
||
|
|
SecretField = "secret"
|
||
|
|
TypeField = "type"
|
||
|
|
CryptionType = 1
|
||
|
|
)
|
||
|
|
|
||
|
|
const (
|
||
|
|
CodeSignaturePass = iota
|
||
|
|
CodeSignatureInvalidHeader
|
||
|
|
CodeSignatureWrongTime
|
||
|
|
CodeSignatureInvalidToken
|
||
|
|
)
|