signer.go 169 B

12345678910
  1. package auth
  2. // 七牛签名算法的类型:
  3. // QBoxToken, QiniuToken, BearToken, QiniuMacToken
  4. type TokenType int
  5. const (
  6. TokenQiniu TokenType = iota
  7. TokenQBox
  8. )