mirror of
https://github.com/0xJacky/nginx-ui.git
synced 2025-05-11 02:15:48 +02:00
10 lines
298 B
Go
10 lines
298 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")
|
|
ErrTimeout = e.New(40401, "request timeout")
|
|
)
|