/
githubmirror
/
client
Обзор
Документация
Войти
/
githubmirror
/
client
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
go/auth/errors.go
113 строк
3 KB
zoom-ua
gofumpt (#28710)
17 дек 2025, 17:16
Не верифицирован
17 дек 2025, 17:16
cda510b
Код
Авторство
О чём код?
package auth import ( "errors" "fmt" libkb "github.com/keybase/client/go/libkb" keybase1 "github.com/keybase/client/go/protocol/keybase1" ) // ErrShutdown is raised when an operation is pending but the CA is shutting down var ErrShutdown = errors.New("shutting down") // ErrUserDeleted is raised when a user is deleted, but was loaded without the loadDeleted flag var ErrUserDeleted = errors.New("user was deleted") // BadUsernameError is raised when the given username disagrees with the expected // username type BadUsernameError struct { expected libkb.NormalizedUsername received libkb.NormalizedUsername } func (e BadUsernameError) Error() string { return fmt.Sprintf("bad username; wanted %s but got %s", e.expected, e.received) } // BadKeyError is raised when the given KID is not valid for the given UID. type BadKeyError struct { uid keybase1.UID kid keybase1.KID } func (e BadKeyError) Error() string { return fmt.Sprintf("Bad key error: %s not active for %s", e.kid, e.uid) } // ErrKeysNotEqual is raised when compared keys sets aren't equal. var ErrKeysNotEqual = errors.New("keys not equal") // InvalidTokenTypeError is raised when the given token is not of the expected type. type InvalidTokenTypeError struct { expected string received string } func (e InvalidTokenTypeError) Error() string { return fmt.Sprintf("Invalid token type, expected: %s, received: %s", e.expected, e.received) } // MaxTokenExpiresError is raised when the given token expires too far in the future. type MaxTokenExpiresError struct { creationTime int64 expireIn int now int64 maxExpireIn int remaining int } func (e MaxTokenExpiresError) Error() string { return fmt.Sprintf("Max token expiration exceeded, ctime/expire_in: %d/%d, "+ "now/max: %d/%d, remaining: %d", e.creationTime, e.expireIn, e.now, e.maxExpireIn, e.remaining) } // TokenExpiredError is raised when the given token is expired. type TokenExpiredError struct { creationTime int64 expireIn int now int64 } func (e TokenExpiredError) Error() string { return fmt.Sprintf("Token expired, ctime/expire_in: %d/%d, now: %d", e.creationTime, e.expireIn, e.now) } // InvalidTokenKeyError is raised when the public key presented in the token does not // correspond to the private key used to sign the token. type InvalidTokenKeyError struct { expected string received string } func (e InvalidTokenKeyError) Error() string { return fmt.Sprintf("Invalid token key, expected: %s, received: %s", e.expected, e.received) } // InvalidTokenServerError is raised when the server presented in the token does not // correspond to the server being asked to verify the token. type InvalidTokenServerError struct { expected string received string } func (e InvalidTokenServerError) Error() string { return fmt.Sprintf("Invalid server in token, expected: %s, received: %s", e.expected, e.received) } // InvalidTokenChallengeError is raised when the challenge presented in the token does not // correspond to the challenge of the verifier. type InvalidTokenChallengeError struct { expected string received string } func (e InvalidTokenChallengeError) Error() string { return fmt.Sprintf("Invalid challenge in token, expected: %s, received: %s", e.expected, e.received) }