gecko/utils/crypto/errors.go

14 lines
286 B
Go

// (c) 2019-2020, Ava Labs, Inc. All rights reserved.
// See the file LICENSE for licensing terms.
package crypto
import (
"errors"
)
var (
errInvalidSigLen = errors.New("invalid signature length")
errMutatedSig = errors.New("signature was mutated from its original format")
)