mirror of
https://github.com/slackhq/nebula.git
synced 2025-12-06 02:30:57 -08:00
9 lines
219 B
Go
9 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")
|
|
)
|