mirror of
https://github.com/slackhq/nebula.git
synced 2025-11-08 23:33:58 +01:00
10 lines
219 B
Go
10 lines
219 B
Go
package cert
|
|
|
|
import "errors"
|
|
|
|
var (
|
|
ErrExpired = errors.New("certificate is expired")
|
|
ErrNotCA = errors.New("certificate is not a CA")
|
|
ErrNotSelfSigned = errors.New("certificate is not self-signed")
|
|
)
|