nginx-ui/internal/crypto/errors.go
2025-01-24 16:41:35 +08:00

9 lines
241 B
Go

package crypto
import "github.com/uozi-tech/cosy"
var (
e = cosy.NewErrorScope("crypto")
ErrPlainTextEmpty = e.New(50001, "plain text is empty")
ErrCipherTextTooShort = e.New(50002, "cipher text is too short")
)