github.com/sandwich-go/boost@v1.3.29/xencoding/encrypt/type.go (about)

     1  package encrypt
     2  
     3  //go:generate stringer -type=Type
     4  type Type byte
     5  
     6  const (
     7  	NoneType Type = iota // 无加解密效果
     8  	AESType              // aes 加解密
     9  )