2020-05-04 10:04:10 +00:00
|
|
|
package service
|
|
|
|
|
|
|
|
import "github.com/nspcc-dev/neofs-api-go/internal"
|
|
|
|
|
|
|
|
// ErrNilToken is returned by functions that expect a non-nil token argument, but received nil.
|
|
|
|
const ErrNilToken = internal.Error("token is nil")
|
|
|
|
|
|
|
|
// ErrInvalidTTL means that the TTL value does not satisfy a specific criterion.
|
|
|
|
const ErrInvalidTTL = internal.Error("invalid TTL value")
|
|
|
|
|
|
|
|
// ErrInvalidPublicKeyBytes means that the public key could not be unmarshaled.
|
|
|
|
const ErrInvalidPublicKeyBytes = internal.Error("cannot load public key")
|
|
|
|
|
|
|
|
// ErrCannotFindOwner is raised when signatures empty in GetOwner.
|
|
|
|
const ErrCannotFindOwner = internal.Error("cannot find owner public key")
|
|
|
|
|
|
|
|
// ErrWrongOwner is raised when passed OwnerID not equal to present PublicKey
|
|
|
|
const ErrWrongOwner = internal.Error("wrong owner")
|
2020-05-04 15:52:56 +00:00
|
|
|
|
2020-05-05 10:16:21 +00:00
|
|
|
// ErrNilSignedDataSource returned by functions that expect a non-nil SignedDataSource, but received nil.
|
2020-05-04 15:52:56 +00:00
|
|
|
const ErrNilSignedDataSource = internal.Error("signed data source is nil")
|
2020-05-05 10:16:21 +00:00
|
|
|
|
|
|
|
// ErrNilSignatureKeySource is returned by functions that expect a non-nil SignatureKeySource, but received nil.
|
|
|
|
const ErrNilSignatureKeySource = internal.Error("empty key-signature source")
|
|
|
|
|
|
|
|
// ErrEmptyDataWithSignature is returned by functions that expect a non-nil DataWithSignature, but received nil.
|
|
|
|
const ErrEmptyDataWithSignature = internal.Error("empty data with signature")
|