summaryrefslogtreecommitdiff
path: root/crypto/cryptoerror.go
blob: 3282f8d4a9096e3b66d43ee366f94f3e190894ba (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
// Copyright (C) 2019-2023 Algorand, Inc.
// This file is part of go-algorand
//
// go-algorand is free software: you can redistribute it and/or modify
// it under the terms of the GNU Affero General Public License as
// published by the Free Software Foundation, either version 3 of the
// License, or (at your option) any later version.
//
// go-algorand is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
// GNU Affero General Public License for more details.
//
// You should have received a copy of the GNU Affero General Public License
// along with go-algorand.  If not, see <https://www.gnu.org/licenses/>.

package crypto

import "errors"

var (
	errInvalidVersion           = errors.New("Invalid version")
	errInvalidAddress           = errors.New("Invalid address")
	errInvalidThreshold         = errors.New("Invalid threshold")
	errInvalidNumberOfSignature = errors.New("Invalid number of signatures")
	errKeyNotExist              = errors.New("Key does not exist")
	errKeysNotMatch             = errors.New("Public key lists do not match")
	errInvalidDuplicates        = errors.New("Invalid duplicates")
	errInvalidNumberOfSig       = errors.New("invalid number of signatures to add")
)

var errUnknownVersion = errors.New("unknown version")