mirror of
https://github.com/openssh/libopenssh
synced 2026-04-17 02:06:45 +00:00
to exist as thin wrappers around sshbuf_* doesn't yet pass regress (breakage in hostkey checking, probably related to new sshkey_* return values)
56 lines
2.1 KiB
C
56 lines
2.1 KiB
C
/* $OpenBSD$ */
|
|
/*
|
|
* Copyright (c) 2011 Damien Miller
|
|
*
|
|
* Permission to use, copy, modify, and distribute this software for any
|
|
* purpose with or without fee is hereby granted, provided that the above
|
|
* copyright notice and this permission notice appear in all copies.
|
|
*
|
|
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
|
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
|
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
|
|
* ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
|
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
|
|
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
|
|
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
*/
|
|
|
|
#ifndef _SSH_ERR_ERR_H
|
|
#define _SSH_ERR_ERR_H
|
|
|
|
/* XXX are these too granular? not granular enough? I can't decide - djm */
|
|
|
|
/* Error codes */
|
|
#define SSH_ERR_SUCCESS 0
|
|
#define SSH_ERR_INTERNAL_ERROR -1
|
|
#define SSH_ERR_ALLOC_FAIL -2
|
|
#define SSH_ERR_MESSAGE_INCOMPLETE -3
|
|
#define SSH_ERR_INVALID_FORMAT -4
|
|
#define SSH_ERR_BIGNUM_IS_NEGATIVE -5
|
|
#define SSH_ERR_BIGNUM_TOO_LARGE -6
|
|
#define SSH_ERR_ECPOINT_TOO_LARGE -7
|
|
#define SSH_ERR_NO_BUFFER_SPACE -8
|
|
#define SSH_ERR_INVALID_ARGUMENT -9
|
|
#define SSH_ERR_KEY_BITS_MISMATCH -10
|
|
#define SSH_ERR_EC_CURVE_INVALID -11
|
|
#define SSH_ERR_KEY_TYPE_MISMATCH -12
|
|
#define SSH_ERR_KEY_TYPE_UNKNOWN -13 /* XXX UNSUPPORTED? */
|
|
#define SSH_ERR_EC_CURVE_MISMATCH -14
|
|
#define SSH_ERR_EXPECTED_CERT -15
|
|
#define SSH_ERR_KEY_LACKS_CERTBLOB -16
|
|
#define SSH_ERR_KEY_CERT_UNKNOWN_TYPE -17
|
|
#define SSH_ERR_KEY_CERT_INVALID_SIGN_KEY -18
|
|
#define SSH_ERR_KEY_INVALID_EC_VALUE -19
|
|
#define SSH_ERR_SIGNATURE_INVALID -20
|
|
#define SSH_ERR_LIBCRYPTO_ERROR -21
|
|
#define SSH_ERR_UNEXPECTED_TRAILING_DATA -22
|
|
#define SSH_ERR_SYSTEM_ERROR -23
|
|
#define SSH_ERR_KEY_CERT_INVALID -24
|
|
#define SSH_ERR_AGENT_COMMUNICATION -25
|
|
#define SSH_ERR_AGENT_FAILURE -26
|
|
|
|
/* Translate a numeric error code to a human-readable error string */
|
|
const char *ssh_err(int n);
|
|
|
|
#endif /* _SSH_ERR_ERR_H */
|