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.
go-library/vendor/github.com/qiniu/go-sdk/v7/auth/signer.go

11 lines
169 B

package auth
// 七牛签名算法的类型:
// QBoxToken, QiniuToken, BearToken, QiniuMacToken
type TokenType int
const (
TokenQiniu TokenType = iota
TokenQBox
)